Class Attribute
Represents a attribute
Inheritance
System.Object
Attribute
Namespace: Simplic.Framework.Extension.UI
Assembly: Simplic.Framework.Extension.dll
Syntax
public class Attribute : object
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 |
---|---|
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 |
---|---|
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 |
---|---|
ICollection<AttributeValue> |