ARROWBUTTON

Definition

ARROWBUTTON [id]
{
  [Flags]
}

Description

A small button with a predefined arrow icon.

Flags

See Dialog Resource for a description of the common flags.

FlagExplanation
[LAYOUTFLAGS]Layout flags.
[NAME]Text.
[SIZE]Manual size.
ARROW_LEFTArrow pointing left
ARROW_SMALL_LEFTSmall arrow pointing left
ARROW_RIGHTArrow pointing right
ARROW_SMALL_RIGHTSmall arrow pointing right.
ARROW_UPArrow pointing up.
ARROW_SMALL_UPSmall arrow pointing up.
ARROW_DOWNArrow pointing down.
ARROW_SMALL_DOWNSmall arrow pointing down.

Example

GROUP
{
  ROWS 2;

  ARROWBUTTON IDC_LEFT { ARROW_LEFT; }
  ARROWBUTTON IDC_SMALL_LEFT { ARROW_SMALL_LEFT; }

  ARROWBUTTON IDC_RIGHT { ARROW_RIGHT; }
  ARROWBUTTON IDC_SMALL_RIGHT { ARROW_SMALL_RIGHT; }

  ARROWBUTTON IDC_UP { ARROW_UP; }
  ARROWBUTTON IDC_SMALL_UP { ARROW_SMALL_UP; }

  ARROWBUTTON IDC_DOWN { ARROW_DOWN; }
  ARROWBUTTON IDC_SMALL_DOWN { ARROW_SMALL_DOWN; }
}

Further Reading