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