public Type? ParentCommand { get; set; }
Public Property ParentCommand As Type
Get
Set
Dim instance As CommandOptions
Dim value As Type
value = instance.ParentCommand
instance.ParentCommand = value
public:
property Type^ ParentCommand {
Type^ get ();
void set (Type^ value);
}
The CommandManager class will only consider commands whose parent, as set using the ParentCommandAttribute attribute, matches this type. If this property is , only commands that do not have a the ParentCommandAttribute attribute are considered.
All other commands are filtered out and will not be returned, created, or executed by the CommandManager class.