Class ParsingUtility.TagInfo
- Namespace
- TMPEffects.TextProcessing
Utility class that holds data about a parsed tag.
public class ParsingUtility.TagInfo- Inheritance
- 
      
      ParsingUtility.TagInfo
- Inherited Members
Constructors
TagInfo()
public TagInfo()TagInfo(int, int, TagType, char, string, string)
public TagInfo(int startIndex, int endIndex, ParsingUtility.TagType type, char prefix, string name, string parameterString)Parameters
- startIndexint
- endIndexint
- typeParsingUtility.TagType
- prefixchar
- namestring
- parameterStringstring
Fields
endIndex
End index of the tag in the source text.
public int endIndexField Value
name
Name of the tag.
public string nameField Value
parameterString
The parameters of the tag, unparsed.
public string parameterStringField Value
prefix
Prefix of the tag.
public char prefixField Value
startIndex
Start index of the tag in the source text.
public int startIndexField Value
type
Type of the tag (open, close).
public ParsingUtility.TagType type