Represents the common RadzenTemplateForm<T> API used by its items. Injected as a cascading property in IRadzenFormComponent.
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public interface IRadzenFormAdds the specified component to the form.
public abstract void AddComponent(IRadzenFormComponent component)
| Type | Name | Description |
|---|---|---|
| IRadzenFormComponent | component | The component to add to the form. |
Finds a form component by its name.
public abstract IRadzenFormComponent FindComponent(string name)
| Type | Name | Description |
|---|---|---|
| string | name | The name. |
| Type | Description |
|---|---|
| IRadzenFormComponent | The component whose Name equals to name; null if such a component is not found. |
Removes the component from the form.
public abstract void RemoveComponent(IRadzenFormComponent component)
| Type | Name | Description |
|---|---|---|
| IRadzenFormComponent | component | The component to remove from the form. |