Interface IRadzenForm
- Namespace
- Radzen
- Assembly
- Radzen.Blazor.dll
Represents the common RadzenTemplateForm<TItem> API used by its items. Injected as a cascading property in IRadzenFormComponent.
public interface IRadzenForm
Methods
AddComponent(IRadzenFormComponent)
Adds the specified component to the form.
void AddComponent(IRadzenFormComponent component)
Parameters
component
IRadzenFormComponentThe component to add to the form.
FindComponent(string)
Finds a form component by its name.
IRadzenFormComponent FindComponent(string name)
Parameters
name
stringThe name.
Returns
- IRadzenFormComponent
The component whose Name equals to
name
;null
if such a component is not found.
RemoveComponent(IRadzenFormComponent)
Removes the component from the form.
void RemoveComponent(IRadzenFormComponent component)
Parameters
component
IRadzenFormComponentThe component to remove from the form.