Description
The Default
field of the ToolButtonStyle
enumeration represents the default style for tool buttons in the editor. This style is typically determined by the editor's current theme or settings, providing a standard appearance for tool buttons unless explicitly overridden by other styles.
Usage
Use the ToolButtonStyle.Default
when you want to apply the standard button style as defined by the editor's theme. This is useful for maintaining consistency across the user interface without manually specifying a style.
Example
// Example of setting a tool button style to Default
ToolButton button = new ToolButton();
button.Style = ToolButtonStyle.Default;
// This will apply the default style to the button, as defined by the editor's theme.