Type Alias FieldValue

type FieldValue = {
    qIsNumeric?: boolean;
    qNumber?: number;
    qText?: string;
}
Index

Properties

qIsNumeric?: boolean

Is set to true if the value is a numeric. This parameter is optional. Default is false.

qNumber?: number

Numeric value of the field. This parameter is displayed if qIsNumeric is set to true. This parameter is optional.

qText?: string

Text related to the field value. This parameter is optional.