Class LinkProperties
Represent properties of the LinkComponent.
public sealed class LinkProperties : FormComponentProperties, IFormComponentProperties
- Inheritance
-
objectLinkProperties
- Implements
- Inherited Members
- Extension Methods
Properties
Inactive
Indicates whether the link should be active and shown as link or just a text. Defaults to false
.
public bool Inactive { get; set; }
Property Value
- bool
OpenInNewTab
Indicates if the link should open in a new tab. Defaults to true
.
public bool OpenInNewTab { get; set; }
Property Value
- bool
Text
Text of the link. If null or empty, the component value (the URL) is used instead.
public string Text { get; set; }
Property Value
- string