C# Class MigraDoc.DocumentObjectModel.Internals.ValueTypeDescriptor

Value descriptor of value types.
Inheritance: ValueDescriptor
Mostrar archivo Open project: DavidS/MigraDoc

Public Methods

Method Description
GetValue ( DocumentObject dom, GV flags ) : object
IsNull ( DocumentObject dom ) : bool

Determines whether the given DocumentObject is null (not set).

SetNull ( DocumentObject dom ) : void
SetValue ( DocumentObject dom, object value ) : void

Private Methods

Method Description
ValueTypeDescriptor ( string valueName, Type valueType, Type fieldType, MemberInfo memberInfo, VDFlags flags ) : System

Method Details

GetValue() public method

public GetValue ( DocumentObject dom, GV flags ) : object
dom DocumentObject
flags GV
return object

IsNull() public method

Determines whether the given DocumentObject is null (not set).
public IsNull ( DocumentObject dom ) : bool
dom DocumentObject
return bool

SetNull() public method

public SetNull ( DocumentObject dom ) : void
dom DocumentObject
return void

SetValue() public method

public SetValue ( DocumentObject dom, object value ) : void
dom DocumentObject
value object
return void