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

SetLocked(Bool)

Declaration

Void SetLocked(Bool locked)

Examples

NSImportColumnInfo thing;
Bool locked;
thing.SetLocked(locked);

Parameters

Type Name Description
Bool locked If true disable the option of choose column.

Returns

Type Description
Void

SetName(String)

Declaration

Void SetName(String name)

Examples

NSImportColumnInfo thing;
String name;
thing.SetName(name);

Parameters

Type Name Description
String name Name of the column.

Returns

Type Description
Void