Reflection
IsMandatoryFillField Property (HostField)
Example 


Gets a value indicating whether the field is a mandatory fill field.
Syntax
'Declaration
 
Public ReadOnly Property IsMandatoryFillField As Boolean
'Usage
 
Dim instance As HostField
Dim value As Boolean
 
value = instance.IsMandatoryFillField
public bool IsMandatoryFillField {get;}
Example
HostField host;
bool fillField = host.IsMandatoryFillField;
See Also