Class PicklistItem
Represents a picklist item in a picklist field declaration.
Inheritance
Object
PicklistItem
Inherited Members
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: Sdl.LanguagePlatform.TranslationMemory
Assembly: Sdl.LanguagePlatform.TranslationMemory.dll
Syntax
public class PicklistItem
Constructors
PicklistItem()
Initializes a new instance with default values.
Declaration
public PicklistItem()
PicklistItem(PicklistItem)
Initializes a new instance with the values of another instance, creating a deep copy.
Declaration
public PicklistItem(PicklistItem other)
Parameters
Type | Name | Description |
---|---|---|
PicklistItem | other | The other instance |
PicklistItem(String)
Initializes a new instance of the PicklistItem class with the specified value.
Declaration
public PicklistItem(string name)
Parameters
Type | Name | Description |
---|---|---|
String | name | The picklist item value. |
Properties
ID
Gets or sets the unique ID for this item.
This value should only set by the storage implementation.
Declaration
public int? ID { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
Name
Gets or sets the picklist item value.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |