interface RangeSearchField {
    $CreationOptions?: RangeSearchFieldCreationOptions;
    $ID: string;
    $Type: "Pages$RangeSearchField";
    caption: Text;
    customDateFormat: string;
    defaultValue: string;
    includeLower: boolean;
    includeUpper: boolean;
    lowerBoundRef: null | AttributeRef;
    name: string;
    placeholder: Text;
    type: SearchFieldType;
    upperBoundRef: null | AttributeRef;
    delete(): void;
    getContainer(): ControlBar;
}

Hierarchy (view full)

Properties

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

caption: Text
customDateFormat: string
defaultValue: string
includeLower: boolean
includeUpper: boolean
lowerBoundRef: null | AttributeRef
name: string
placeholder: Text
upperBoundRef: null | AttributeRef

Methods