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
GuidThe unique identifier of the custom attribute.
displayName
stringThe display name of the custom attribute.
value
longThe 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
longThe 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 long Value { get; set; }
Property Value
Methods
Clone()
Returns a CENTREL.XIA.Configuration.Types.CustomAttributeInteger cloned from this object.
public CustomAttributeInteger Clone()
Returns
- CustomAttributeInteger
A CENTREL.XIA.Configuration.Types.CustomAttributeInteger.