Class HtmlAttribute
Describes an attribute of HTML tag. Use HtmlAttribute to describe a non-standand html attributes.
Inheritance
object
HtmlAttribute
Namespace: AxaFrance.WebEngine.Web
Assembly: AxaFrance.WebEngine.Web.dll
Syntax
public class HtmlAttribute
Constructors
| Edit this page View SourceHtmlAttribute()
Creates an instance of Html Attribute
Declaration
public HtmlAttribute()
HtmlAttribute(string)
Creates an instance of Html Attribute with name initialized.
Declaration
public HtmlAttribute(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name |
HtmlAttribute(string, string)
Creates an instance of Html Attribute with name and value initialized.
Declaration
public HtmlAttribute(string name, string value)
Parameters
Type | Name | Description |
---|---|---|
string | name | |
string | value |
Properties
| Edit this page View SourceName
The name of the html attribute
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Value
The value of the html attribute
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
string |