IPropertyPaneLinkProps interface
PropertyPaneLink component props.
Properties
| aria |
Adds an aria label to the link for accessibility. |
| disabled | Whether the property pane link is disabled or not. |
| href | Location to which the link is targeted to. |
| popup |
The props of pop up window. |
| target | This attribute specifies where to display the linked resource. |
| text | Display text for the link. |
Property Details
ariaLabel
Adds an aria label to the link for accessibility.
ariaLabel?: string;
Property Value
string
disabled
Whether the property pane link is disabled or not.
disabled?: boolean;
Property Value
boolean
href
Location to which the link is targeted to.
href: string;
Property Value
string
popupWindowProps
target
This attribute specifies where to display the linked resource.
target?: string;
Property Value
string
Remarks
Following values can be used:
_self - (default) Load the response in the current page.
_blank - Load the response into a new unnamed tab.
_parent - Load the response in the parent of the current page. If no parent exists, then this option behaves same as "_self"
_top - Load the response into the original window.
text
Display text for the link.
text: string;
Property Value
string