Type Alias FieldDescription

type FieldDescription = {
    qAlwaysOneSelected?: boolean;
    qAndMode?: boolean;
    qByteSize?: number;
    qCardinal?: number;
    qComment?: string;
    qDistinctOnly?: boolean;
    qHasInfo_OBSOLETE?: boolean;
    qInternalNumber?: number;
    qIsDefinitionOnly?: boolean;
    qIsHidden?: boolean;
    qIsLocked?: boolean;
    qIsNumeric?: boolean;
    qIsSemantic?: boolean;
    qIsSystem?: boolean;
    qName?: string;
    qPossibleCount_OBSOLETE?: number;
    qSrcTables?: string[];
    qTags?: string[];
    qTotalCount?: number;
}
Index

Properties

qAlwaysOneSelected?: boolean

If set to true, it means that the field has one and only one selection (not 0 and not more than 1). If this property is set to true, the field cannot be cleared anymore and no more selections can be performed in that field. The default value is false.

qAndMode?: boolean

If set to true a logical AND (instead of a logical OR) is used when making selections in a field. The default value is false.

qByteSize?: number

Static RAM memory used in bytes.

qCardinal?: number

Number of distinct field values.

qComment?: string

Field comment.

qDistinctOnly?: boolean

If set to true, only distinct field values are shown. The default value is false.

qHasInfo_OBSOLETE?: boolean
qInternalNumber?: number

Internal number of the field.

qIsDefinitionOnly?: boolean

If set to true, it means that the field is a field on the fly. The default value is false.

qIsHidden?: boolean

If set to true, it means that the field is hidden. The default value is false.

qIsLocked?: boolean

If set to true, it means that the field is locked. The default value is false.

qIsNumeric?: boolean

Is set to true if the value is a numeric. The default value is false.

qIsSemantic?: boolean

If set to true, it means that the field is a semantic. The default value is false.

qIsSystem?: boolean

If set to true, it means that the field is a system field. The default value is false.

qName?: string

Name of the field.

qPossibleCount_OBSOLETE?: number
qSrcTables?: string[]

List of table names.

qTags?: string[]

Gives information on a field. For example, it can return the type of the field. Examples: key, text, ASCII.

qTotalCount?: number

Total number of field values.