Class Fieldset
Generate a standard HTML5 <fieldset> tag
Implements
System.Web.IHtmlString
System.Collections.Generic.IEnumerable<ITag>
System.Collections.IEnumerable
Inherited Members
Namespace: ToSic.Razor.Html5
Assembly: ToSic.Razor.dll
Syntax
public class Fieldset : Tag<Fieldset>, IRawHtmlString, IHtmlString, IHtmlTag, ITag, IEnumerable<ITag>, IEnumerable
Methods
| Improve this Doc View SourceDisabled()
Activate the disabled attribute on the <fieldset> tag
Declaration
public Fieldset Disabled()
Returns
Type | Description |
---|---|
Fieldset | a Fieldset object to enable fluid command chaining |
Disabled(String)
Set the disabled attribute on the <fieldset> tag
Declaration
public Fieldset Disabled(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | what should be in disabled='...'. If called multiple times, later values replace the previous value. |
Returns
Type | Description |
---|---|
Fieldset | a Fieldset object to enable fluid command chaining |
Form(String)
Set the form attribute on the <fieldset> tag
Declaration
public Fieldset Form(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | what should be in form='...'. If called multiple times, later values replace the previous value. |
Returns
Type | Description |
---|---|
Fieldset | a Fieldset object to enable fluid command chaining |
Name(String)
Set the name attribute on the <fieldset> tag
Declaration
public Fieldset Name(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | what should be in name='...'. If called multiple times, later values replace the previous value. |
Returns
Type | Description |
---|---|
Fieldset | a Fieldset object to enable fluid command chaining |
Implements
System.Web.IHtmlString
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable