Set the value of the field. Typically you simply set the field's value by assigning
to
Value, but you can use this method if finer control is required. For example,
in order to set the field's value, but not cause it to be marked
Dirty as a result you
would call:
field.SetValue("the new value", SetValFlags.DoNotMakeDirty, null).
Unless this level of control is required it is recommended that
Value be assigned directly.
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax void SetValue(
Object value,
SetValFlags flags,
Object param
)
Sub SetValue (
value As Object,
flags As SetValFlags,
param As Object
)
Parameters
- value
- Type: SystemObject
The new value to set. - flags
- Type: NetQuarry.DataSetValFlags
Options specifying how the assignment is to be performed. - param
- Type: SystemObject
Provided for future use.
See Also