CommandGroupAttribute
public CommandGroupAttribute(string name)
Parameters
| Parameter | Description |
|---|---|
| name | Group name. |
Descriptions
Specifies the group that contains the command.
If not specified, it will be included in 'Others'.
It can be specified for both properties and methods.
The setting status will be displayed in the detail view.
#if NOA_DEBUGGER
using NoaDebugger;
public class DebugCommandSample : DebugCategoryBase
{
[CommandGroup("Group1")]
public int ExampleProperty
{
get;
set;
}
}
#endif
