Command UI that generates VisualElement
public abstract class CommandUI<T> : ICommandUI where T : Command
Type Parameters
Methods
Declaration
public Type CommandType()
Returns
| Type |
Description |
| Type |
The command type.
|
Implements
Declaration
protected abstract VisualElement CreateUI(T command)
Parameters
| Type |
Name |
Description |
| T |
command |
|
Returns
Create Command UI contents
Declaration
public VisualElement CreateUI(Command command)
Parameters
| Type |
Name |
Description |
| Command |
command |
command UI Contents that can create.
|
Returns
Implements