Table of Contents

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 Guid

The unique identifier of the custom attribute.

displayName string

The display name of the custom attribute.

value string

The 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 string

The value to assign.

Properties

DisplayValue

Gets the display value of the custom attribute.

public override string DisplayValue { get; set; }

Property Value

string

HasValue

Gets whether the custom attribute has a value set.

public override bool HasValue { get; }

Property Value

bool

Value

Gets or sets the value of this custom attribute.

public string Value { get; set; }

Property Value

string