IFieldState<T>.SetUnknown(T) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Set this field value in form state to unknown.
public void SetUnknown (T state);
abstract member SetUnknown : 'T -> unit
Public Sub SetUnknown (state As T)
Parameters
- state
- T
Form state with field value to set to unknown.
Remarks
For value types (numbers, bools, date time) the value is set to null if nullable. For enum types it is set to null if nullable or 0 if not. For non value types like string set the value to null.