Class PicklistItem
Represents a picklist item in a picklist field declaration.
Inheritance
System.Object
PicklistItem
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: 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 |
---|---|---|
System.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 |
---|---|
System.Nullable<System.Int32> |
Name
Gets or sets the picklist item value.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |