Class NSFieldInfoDynamicLink

Dynamic Link custom database field.

Constructors

NSFieldInfoDynamicLink()

Initializes a new instance of the NSFieldInfoDynamicLink class.

Declaration

NSFieldInfoDynamicLink

Methods

GetDefaultValue()

Declaration

Integer GetDefaultValue()

Returns

Type Description
Integer Default attachment ID value.

GetLinkName()

Declaration

String GetLinkName()

Examples

NSFieldInfoDynamicLink thing;
String linkName = thing.GetLinkName();

Returns

Type Description
String Display text for link.

GetLinkValue()

Declaration

String GetLinkValue()

Examples

NSFieldInfoDynamicLink thing;
String linkValue = thing.GetLinkValue();

Returns

Type Description
String URL link value. May contain CS tags to be replaced.

SetDefaultValue(Integer)

Default attachment ID value

Declaration

Void SetDefaultValue(Integer value)

Parameters

Type Name Description
Integer value

Returns

Type Description
Void

SetLinkName(String)

Declaration

Void SetLinkName(String linkName)

Examples

NSFieldInfoDynamicLink thing;
String linkName;
thing.SetLinkName(linkName);

Parameters

Type Name Description
String linkName Display text for link.

Returns

Type Description
Void

SetLinkValue(String)

Declaration

Void SetLinkValue(String linkValue)

Examples

NSFieldInfoDynamicLink thing;
String linkValue;
thing.SetLinkValue(linkValue);

Parameters

Type Name Description
String linkValue URL link value. May contain CS tags to be replaced.

Returns

Type Description
Void