IDataArea interface.Change Method

Estimated reading time: 3 minutes

Definition

Namespace: ASNA.DataGate.Client
Assembly: ASNA.QSys.DataGate.Client.dll

Changes the value of the data area to a boolean value.

Overloads

Signature Description
Change(void Change(bool Value)) Changes the value of the data area to a boolean value.
Change(void Change(decimal Value)) Changes the value of the data area to a decimal value.
Change(void Change(string Value)) Changes the value of the data area to a string value.
Change(void Change(string Value, int StartingOffset, int SubstringLength)) Changes a subset of the data area to a string value.
Change(void Change(ProgParm Value)) Changes the value of the data area to a ProgParm value.
Change(void Change(ProgParm Value, int StartingOffset, int SubstringLength)) Changes a subset of the data area to a ProgParm value.

void Change(bool Value)

Changes the value of the data area to a boolean value.

void Change(bool Value)

Parameters

Type Parameter name Description
Boolean Value The boolean value to set.

void Change(decimal Value)

Changes the value of the data area to a decimal value.

void Change(decimal Value)

Parameters

Type Parameter name Description
Decimal Value The decimal value to set.

void Change(string Value)

Changes the value of the data area to a string value.

void Change(string Value)

Parameters

Type Parameter name Description
String Value The string value to set.

void Change(string Value, int StartingOffset, int SubstringLength)

Changes a subset of the data area to a string value.

void Change(string Value, int StartingOffset, int SubstringLength)

Parameters

Type Parameter name Description
String Value The string value to set.
Int32 StartingOffset The starting offset of the subset.
Int32 SubstringLength The length of the subset.

void Change(ProgParm Value)

Changes the value of the data area to a ProgParm value.

void Change(ProgParm Value)

Parameters

Type Parameter name Description
ProgParm Value The ProgParm value to set.

void Change(ProgParm Value, int StartingOffset, int SubstringLength)

Changes a subset of the data area to a ProgParm value.

void Change(ProgParm Value, int StartingOffset, int SubstringLength)

Parameters

Type Parameter name Description
ProgParm Value The ProgParm value to set.
Int32 StartingOffset The starting offset of the subset.
Int32 SubstringLength The length of the subset.

See Also