Interface IField

The ISchema field definition.

Inherited Members
INode.Name
INode.Min
INode.Max
INode.IsVariable
Namespace: PushTechnology.ClientInterface.Data.Record.Schema
Assembly: Diffusion.Client.dll
Syntax
public interface IField : INode
Remarks

Implemented in Version 6.0.

Properties

Scale

Returns the scale of a DECIMAL field or 0 for other types.

Declaration
int Scale { get; }
Property Value
Type Description
System.Int32

The scale.

Remarks

The scale represents the number of places to the right of the decimal point in a decimal number.

Type

Returns the type of this field.

Declaration
FieldType Type { get; }
Property Value
Type Description
FieldType

The type of this field.

Back to top