Class Attribute
Represents a attribute
Inheritance
System.Object
Attribute
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 Attribute
Constructors
| Improve this Doc View SourceAttribute()
Initialize attribute
Declaration
public Attribute()
Properties
| Improve this Doc View SourceId
Gets or sets the unique id of the attribute
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
InternName
Gets or sets the unique intern name of the attribute
Declaration
public string InternName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsDeleted
Gets or sets whether the attribute is deleted or not
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
NameId
Gets or sets the nameid of the attribute
Declaration
public Guid NameId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
Values
Gets or sets a list of attribute values
Declaration
public StatefulCollection<AttributeValue> Values { get; set; }
Property Value
Type | Description |
---|---|
StatefulCollection<AttributeValue> |
Methods
| Improve this Doc View SourceLoadValues()
Load all available values
Declaration
public ICollection<AttributeValue> LoadValues()
Returns
Type | Description |
---|---|
System.Collections.Generic.ICollection<AttributeValue> |