Click or drag to resize

FieldKernelSetValue Method

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.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public void SetValue(
	Object value,
	SetValFlags flags,
	Object param
)

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.

Implements

IFieldSetValue(Object, SetValFlags, Object)
See Also