interface MoveFieldBean {
    after?: string;
    position?:
        | "First"
        | "Last"
        | "Earlier"
        | "Later";
}

Properties

Properties

after?: string

The ID of the screen tab field after which to place the moved screen tab field. Required if position isn't provided.

position?:
    | "First"
    | "Last"
    | "Earlier"
    | "Later"

The named position to which the screen tab field should be moved. Required if after isn't provided.