Table of Contents

Class CustomAttributeInteger

Namespace
CENTREL.XIA.Configuration.Types
Assembly
CENTREL.XIA.Configuration.Types.dll

Represents an integer based custom attribute.

public class CustomAttributeInteger : CustomAttributeBase
Inheritance
CustomAttributeInteger
Inherited Members

Constructors

CustomAttributeInteger()

Initializes a new instance of the CENTREL.XIA.Configuration.Types.CustomAttributeInteger class.

public CustomAttributeInteger()

CustomAttributeInteger(Guid, string, long)

Initializes a new instance of the CENTREL.XIA.Configuration.Types.CustomAttributeInteger class with the specified value.

public CustomAttributeInteger(Guid identifier, string displayName, long value)

Parameters

identifier Guid

The unique identifier of the custom attribute.

displayName string

The display name of the custom attribute.

value long

The value to assign.

CustomAttributeInteger(long)

Initializes a new instance of the CENTREL.XIA.Configuration.Types.CustomAttributeInteger class with the specified value.

public CustomAttributeInteger(long value)

Parameters

value long

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 long Value { get; set; }

Property Value

long

Methods

Clone()

Returns a CENTREL.XIA.Configuration.Types.CustomAttributeInteger cloned from this object.

public CustomAttributeInteger Clone()

Returns

CustomAttributeInteger

A CENTREL.XIA.Configuration.Types.CustomAttributeInteger.