WindowFlags WindowContextHelpButtonHint

robot_2Generated
code_blocksInput

Description

The WindowContextHelpButtonHint field is a member of the Editor.WindowFlags enumeration. It is used to specify that a window should include a context help button in its title bar. This button typically provides users with access to help information related to the window's content or functionality.

Usage

To use the WindowContextHelpButtonHint flag, include it in the window flags when creating or modifying a window. This can be done by combining it with other flags using a bitwise OR operation.

Example

// Example of using WindowContextHelpButtonHint

// Create a window with a context help button
var windowFlags = Editor.WindowFlags.Window | Editor.WindowFlags.WindowContextHelpButtonHint;

// Apply the flags to a window creation method
CreateWindow("MyWindow", windowFlags);