Class CustomAttributeHtml
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents a HTML based custom attribute.
public class CustomAttributeHtml : CustomAttributeBase
- Inheritance
-
CustomAttributeHtml
- Inherited Members
Constructors
CustomAttributeHtml()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.CustomAttributeHtml class.
public CustomAttributeHtml()
CustomAttributeHtml(Guid, string, string)
Initializes a new instance of the CENTREL.XIA.Configuration.Types.CustomAttributeHtml class with the specified value.
public CustomAttributeHtml(Guid identifier, string displayName, string value)
Parameters
identifier
GuidThe unique identifier of the custom attribute.
displayName
stringThe display name of the custom attribute.
value
stringThe value to assign.
CustomAttributeHtml(string)
Initializes a new instance of the CENTREL.XIA.Configuration.Types.CustomAttributeHtml class with the specified value.
public CustomAttributeHtml(string value)
Parameters
value
stringThe value to assign.
Properties
DisplayValue
Gets the display value of the custom attribute.
public override string DisplayValue { get; set; }
Property Value
HasValue
Gets whether the custom attribute has a value set.
public override bool HasValue { get; }
Property Value
Value
Gets or sets the value of this custom attribute.
public string Value { get; set; }