Class TreeGridCommandColumn
Configures tree grid command column.
Inheritance
Namespace: Syncfusion.Blazor.TreeGrid
Assembly: Syncfusion.Blazor.dll
Syntax
public class TreeGridCommandColumn : OwningComponentBase
Constructors
TreeGridCommandColumn()
Declaration
public TreeGridCommandColumn()
Properties
ButtonOption
Gets or sets the button model for the command column.
Declaration
public CommandButtonOptions ButtonOption { get; set; }
Property Value
Type | Description |
---|---|
CommandButtonOptions | An instance of CommandButtonOptions that defines the button model. |
Title
Gets or sets the tooltip for the command button.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the tooltip for the command button. |
Type
Gets or sets the type of the command button.
Declaration
public CommandButtonType Type { get; set; }
Property Value
Type | Description |
---|---|
CommandButtonType | One of the CommandButtonType enumeration values that defines the button type. The default is None.
None -
Default. A command button with no default action. Use this for custom command actions. |
Remarks
To use custom command button, set Type as None and use CommandClicked event to perform custom action.
Uid
Gets the unique identifier value of the column.
Declaration
public string Uid { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the unique identifier of the command column. |
Methods
Dispose(Boolean)
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing |
OnInitializedAsync()
Method invoked when the component is ready to start, having received its initial parameters from its parent in the render tree. Override this method if you will perform an asynchronous operation and want the component to refresh when that operation is completed.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |
OnParametersSetAsync()
Method invoked when the component has received parameters from its parent in the render tree, and the incoming values have been assigned to properties.
Declaration
protected override Task OnParametersSetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |