Class AttributeValue
Represents a value of an attribute
Inheritance
System.Object
AttributeValue
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Framework.Extension.UI
Assembly: Simplic.Framework.Extension.dll
Syntax
public class AttributeValue
Constructors
| Improve this Doc View SourceAttributeValue()
Initialize value
Declaration
public AttributeValue()
Properties
| Improve this Doc View SourceAttributeId
Gets or sets the attribute id
Declaration
public Guid AttributeId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
Changed
Gets whether the current item has changed
Declaration
public bool Changed { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
DateValue
Gets or sets a date value
Declaration
public DateTime? DateValue { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
DoubleValue
Gets or sets a double value
Declaration
public double? DoubleValue { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> |
Id
Gets or sets the unique id of the value
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
IntValue
Gets or sets a log/bigint value
Declaration
public long? IntValue { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
StrValue
Gets or sets a string value
Declaration
public string StrValue { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TimeValue
Gets or sets a time value
Declaration
public TimeSpan? TimeValue { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.TimeSpan> |