Class NSImportColumnInfo
Column info for import lines.
Syntax
Constructors
NSImportColumnInfo()
Initializes a new instance of the NSImportColumnInfo class.
Declaration
NSImportColumnInfo
Methods
GetDisplayName()
Column info for import lines.
Declaration
String GetDisplayName()
Returns
Type | Description |
---|---|
String | Display name of the column. |
Examples
NSImportColumnInfo thing;
String displayName = thing.GetDisplayName();
GetLocked()
Column info for import lines.
Declaration
Bool GetLocked()
Returns
Type | Description |
---|---|
Bool | If true disable the option of choose column. |
Examples
NSImportColumnInfo thing;
Bool locked = thing.GetLocked();
GetName()
Column info for import lines.
Declaration
String GetName()
Returns
Type | Description |
---|---|
String | Name of the column. |
Examples
NSImportColumnInfo thing;
String name = thing.GetName();
SetDisplayName(String)
Column info for import lines.
Declaration
Void SetDisplayName(String displayName)
Parameters
Type | Name | Description |
---|---|---|
String | displayName | Display name of the column. |
Returns
Type | Description |
---|---|
Void |
Examples
NSImportColumnInfo thing;
String displayName;
thing.SetDisplayName(displayName);
SetLocked(Bool)
Column info for import lines.
Declaration
Void SetLocked(Bool locked)
Parameters
Type | Name | Description |
---|---|---|
Bool | locked | If true disable the option of choose column. |
Returns
Type | Description |
---|---|
Void |
Examples
NSImportColumnInfo thing;
Bool locked;
thing.SetLocked(locked);
SetName(String)
Column info for import lines.
Declaration
Void SetName(String name)
Parameters
Type | Name | Description |
---|---|---|
String | name | Name of the column. |
Returns
Type | Description |
---|---|
Void |
Examples
NSImportColumnInfo thing;
String name;
thing.SetName(name);