Class FormGroup
Inheritance
System.Object
FormGroup
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class FormGroup : ComponentBase, IFormItemsContainer, IFormGroup, IFormItemBase, IDisposable
Constructors
FormGroup()
Declaration
public FormGroup()
Properties
ChildContent
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment
|
Class
Defines custom CSS class of the group.
Declaration
public string Class { get; set; }
Property Value
System.String
|
Implements
Columns
Defines the count of columns in form grid layout.
Declaration
public int Columns { get; set; }
Property Value
System.Int32
|
Implements
ColumnSpacing
Defines the spacing between columns in form grid layout.
Declaration
public string ColumnSpacing { get; set; }
Property Value
System.String
|
Implements
FormItemsCollection
Declaration
public List<IFormItemBase> FormItemsCollection { get; }
Property Value
System.Collections.Generic.List<IFormItemBase>
|
Implements
Id
Defines the id of the form group that will be rendered.
Declaration
public string Id { get; set; }
Property Value
System.String
|
LabelText
Defines the label text of the group.
Declaration
public string LabelText { get; set; }
Property Value
System.String
|
Implements
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|
Dispose()
Declaration
public void Dispose()
OnInitialized()
Declaration
protected override void OnInitialized()
Explicit Interface Implementations
IFormItemBase.FormContainer
Declaration
IFormContainer IFormItemBase.FormContainer { get; set; }
Returns
Telerik.Blazor.Components.Form.IFormContainer
|
Implements
IFormItemBase.Id
IFormItemsContainer.AddFormItem(IFormItemBase)
Declaration
void IFormItemsContainer.AddFormItem(IFormItemBase item)
Parameters
IFormItemBase
item
|
Implements
IFormItemsContainer.FormItemsCollection
Declaration
List<IFormItemBase> IFormItemsContainer.FormItemsCollection { get; }
Returns
System.Collections.Generic.List<IFormItemBase>
|
Implements
IFormItemsContainer.RemoveFormItem(IFormItemBase, Boolean)
Declaration
void IFormItemsContainer.RemoveFormItem(IFormItemBase item, bool isAutoGenerated)
Parameters
IFormItemBase
item
|
System.Boolean
isAutoGenerated
|