Class RadzenGridRow
Inheritance
RadzenGridRow
Assembly: Radzen.Blazor.dll
Syntax
public class RadzenGridRow : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IRadzenForm
Constructors
RadzenGridRow()
Declaration
Properties
Attributes
Declaration
[Parameter(CaptureUnmatchedValues = true)]
public IReadOnlyDictionary<string, object> Attributes { get; set; }
Property Value
ChildContent
Declaration
[Parameter]
public RenderFragment ChildContent { get; set; }
Property Value
CssClass
Declaration
[Parameter]
public string CssClass { get; set; }
Property Value
InEditMode
Declaration
[Parameter]
public bool InEditMode { get; set; }
Property Value
Methods
Adds the specified component to the form.
Declaration
public void AddComponent(IRadzenFormComponent component)
Parameters
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Overrides
FindComponent(string)
Finds a form component by its name.
Declaration
public IRadzenFormComponent FindComponent(string name)
Parameters
Type |
Name |
Description |
string |
name |
The name.
|
Returns
Removes the component from the form.
Declaration
public void RemoveComponent(IRadzenFormComponent component)
Parameters
SetParametersAsync(ParameterView)
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
Returns
Overrides
Implements