CommandGroupAttribute
public CommandGroupAttribute(string name)
パラメータ
パラメータ名 | 説明 |
---|---|
name | グループ名 |
説明
コマンドを内包するグループを指定します。
指定がない場合は「Others」に内包します。
プロパティ・メソッド共に指定できます。
詳細ビューに設定状況を表示します。
#if NOA_DEBUGGER
using NoaDebugger;
public class DebugCommandSample : DebugCategoryBase
{
[CommandGroup("Group1")]
public int ExampleProperty
{
get;
set;
}
}
#endif