Struct GroupLinkPosition
Represents position of group link in a text.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
Namespace: TehGM.Wolfringo.Utilities.Internal
Assembly: Wolfringo.Core.dll
Syntax
public struct GroupLinkPosition
Constructors
| Improve this Doc View SourceGroupLinkPosition(Int32, Int32, String)
Create a new instance of group link position.
Declaration
public GroupLinkPosition(int start, int end, string text)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | start | Start of a group link. |
System.Int32 | end | End of a group link. |
System.String | text | Contents of group link within brackets (group name). |
Properties
| Improve this Doc View SourceEnd
End of a group link.
Declaration
public readonly int End { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Start
Start of a group link.
Declaration
public readonly int Start { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Text
Contents of group link within brackets (group name).
Declaration
public readonly string Text { get; }
Property Value
Type | Description |
---|---|
System.String |