3ds Max C++ API Reference
Tool Item Types

Enumerations

enum  ToolItemType {
  CTB_PUSHBUTTON , CTB_CHECKBUTTON , CTB_MACROBUTTON , CTB_SEPARATOR ,
  CTB_STATUS , CTB_OTHER , CTB_IMAGE
}
 

Detailed Description

See also
Class ToolItem

Enumeration Type Documentation

◆ ToolItemType

Enumerator
CTB_PUSHBUTTON 

Button pops back out as soon as it is released by the user.

CTB_CHECKBUTTON 

Button stays pressed in until the user presses it again.

CTB_MACROBUTTON 

Can contain icons or text.

CTB_SEPARATOR 

Used to separate groups of items in a toolbar.

CTB_STATUS 

Can be used to display text.

CTB_OTHER 

A user-defined tool type.

CTB_IMAGE 

An image control.

3105  {
3106  CTB_PUSHBUTTON,
3107  CTB_CHECKBUTTON,
3108  CTB_MACROBUTTON,
3109  CTB_SEPARATOR,
3110  CTB_STATUS,
3111  CTB_OTHER
3112  , CTB_IMAGE
3113  };
@ CTB_OTHER
A user-defined tool type.
Definition: custcont.h:3111
@ CTB_SEPARATOR
Used to separate groups of items in a toolbar.
Definition: custcont.h:3109
@ CTB_CHECKBUTTON
Button stays pressed in until the user presses it again.
Definition: custcont.h:3107
@ CTB_STATUS
Can be used to display text.
Definition: custcont.h:3110
@ CTB_MACROBUTTON
Can contain icons or text.
Definition: custcont.h:3108
@ CTB_PUSHBUTTON
Button pops back out as soon as it is released by the user.
Definition: custcont.h:3106
@ CTB_IMAGE
An image control.
Definition: custcont.h:3112