47 lines
No EOL
889 B
TypeScript
47 lines
No EOL
889 B
TypeScript
/**
|
|
* SharePoint property pane link popup window properties.
|
|
*/
|
|
export interface PropertyPaneLinkPopupWindowProperties {
|
|
/**
|
|
* The width of the popup window.
|
|
*/
|
|
width: number;
|
|
/**
|
|
* The height of the popup window.
|
|
*/
|
|
height: number;
|
|
/**
|
|
* The title of the popup window.
|
|
*/
|
|
title: string;
|
|
/**
|
|
* The position of the popup window.
|
|
*/
|
|
positionWindowPosition: PopupWindowPosition;
|
|
}
|
|
/**
|
|
* SharePoint property pane link popup window position.
|
|
*/
|
|
export declare enum PopupWindowPosition {
|
|
/**
|
|
* Center.
|
|
*/
|
|
Center = 0,
|
|
/**
|
|
* Right top.
|
|
*/
|
|
RightTop = 1,
|
|
/**
|
|
* Left top.
|
|
*/
|
|
LeftTop = 2,
|
|
/**
|
|
* Right bottom.
|
|
*/
|
|
RightBottom = 3,
|
|
/**
|
|
* Left bottom.
|
|
*/
|
|
LeftBottom = 4
|
|
}
|
|
//# sourceMappingURL=propertyPaneLinkPopupWindowProperties.d.ts.map
|