ExpandCollapseOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the flags that are used to configure, expand, and collapse actions for elements in the user interface.
This enumeration supports a bitwise combination of its member values.
public enum class ExpandCollapseOptions
[System.Flags]
public enum ExpandCollapseOptions
[<System.Flags>]
type ExpandCollapseOptions =
Public Enum ExpandCollapseOptions
- Inheritance
-
ExpandCollapseOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Use the default behavior. |
UseWindowMessage | 1 | For windowed tree controls, use the window message to expand or collapse this element. |
UseDoubleClick | 2 | Double-click to expand or collapse this element. |
UseNumpad | 4 | Use the PLUS (+) and MINUS (-) keys on the number pad to expand or collapse this element. |
UseEnter | 8 | Use the ENTER key to expand or collapse this element. |
UseProgrammatic | 16 | Use the InvokeProgrammaticAction(ProgrammaticActionOption) to expand or collapse this element. |
DoNotVerify | 32 | Ignore verification after the expand or collapse operation. |