Class FileCabinetFieldBase
Base file cabinet field definition
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public class FileCabinetFieldBase : object
Constructors
FileCabinetFieldBase()
Creates a new instance of this class
Declaration
public FileCabinetFieldBase()
Properties
DBFieldName
The name of the database column for the field.
Declaration
public string DBFieldName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DisplayName
Label (display name) of the field.
Declaration
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DropLeadingBlanks
Determines whether the system will automatically remove any leading spaces. If both the Remove leading spaces and Remove leading zeros options are enabled, both leading spaces and zeros are removed: _07896 becomes 7896.
Declaration
public bool DropLeadingBlanks { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
DropLeadingZero
Determines whether the system will automatically remove any leading zeros. If both the Remove leading spaces and Remove leading zeros options are enabled, both leading spaces and zeros are removed: _07896 becomes 7896.
Declaration
public bool DropLeadingZero { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
DWFieldType
The DocuWare type of the field
Declaration
public DWFieldType DWFieldType { get; set; }
Property Value
Type | Description |
---|---|
DWFieldType |
FieldInfoText
Description of the field.
Declaration
public string FieldInfoText { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FixedEntry
Fixed value of the field.If it's null the field has no fixed value. Not relevant for fields with "Table" DWFieldType.
Declaration
public string FixedEntry { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Length
Length of the field (only for text fields).
Declaration
public int Length { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
NotEmpty
Obsolete since Lobster. Use the same property on dialog field and stamp form field.
Declaration
public bool NotEmpty { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Precision
The number of decimal places that can be entered after the decimal point of a numeric and decimal fields.
Declaration
public int Precision { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Scope
Gets whether the field is a user or a system field.
Declaration
public FileCabinetFieldScope Scope { get; set; }
Property Value
Type | Description |
---|---|
FileCabinetFieldScope |