Interface IRadzenForm
Represents the common RadzenTemplateForm<TItem> API used by its items. Injected as a cascading property in IRadzenFormComponent.
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public interface IRadzenForm
Methods
AddComponent(IRadzenFormComponent)
Adds the specified component to the form.
Declaration
void AddComponent(IRadzenFormComponent component)
Parameters
Type | Name | Description |
---|---|---|
IRadzenFormComponent | component | The component to add to the form. |
FindComponent(String)
Finds a form component by its name.
Declaration
IRadzenFormComponent FindComponent(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name. |
Returns
Type | Description |
---|---|
IRadzenFormComponent | The component whose Name equals to |
RemoveComponent(IRadzenFormComponent)
Removes the component from the form.
Declaration
void RemoveComponent(IRadzenFormComponent component)
Parameters
Type | Name | Description |
---|---|---|
IRadzenFormComponent | component | The component to remove from the form. |