Class HtmlTag
The HTML tag description.
Inheritance
System.Object
HtmlTag
Namespace: FlaxEngine.Utilities
Assembly: FlaxEngine.CSharp.dll
Syntax
public sealed class HtmlTag : ValueType
Fields
Attributes
Collection of attributes for this tag (name + value pairs).
Declaration
public Dictionary<string, string> Attributes
Field Value
System.Collections.Generic.Dictionary<System.String, System.String>
|
EndPosition
Tag end position in the source text (character index). Includes any tag attributes data.
Declaration
public int EndPosition
Field Value
System.Int32
|
IsEndingSlash
True if this tag contained a trailing forward slash (end of the tag).
Declaration
public bool IsEndingSlash
Field Value
System.Boolean
|
IsLeadingSlash
True if this tag contained a leading forward slash (begin of the tag).
Declaration
public bool IsLeadingSlash
Field Value
System.Boolean
|
Name
Name of the tag.
Declaration
public string Name
Field Value
System.String
|
StartPosition
Tag start position in the source text (character index).
Declaration
public int StartPosition
Field Value
System.Int32
|
Properties
IsSlash
True if this tag contained a leading or trailing forward slash.
Declaration
public bool IsSlash { get; }
Property Value
System.Boolean
|
Methods
ToString()
Declaration
public override string ToString()
Returns
System.String
|