Class FindTextArgs
This class is used to pass find arguments to some methods of the CodeUtils class.
Inheritance
System.Object
FindTextArgs
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: FastReport.Code
Assembly: FastReport.OpenSource.dll
Syntax
public class FindTextArgs
Properties
CloseBracket
The char sequence used to find the expression's end.
Declaration
public string CloseBracket { get; set; }
Property Value
Type | Description |
---|---|
System.String |
EndIndex
After the search, this property points to the end of an expression.
Declaration
public int EndIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
FoundText
The last found expression.
Declaration
public string FoundText { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OpenBracket
The char sequence used to find the expression's begin.
Declaration
public string OpenBracket { get; set; }
Property Value
Type | Description |
---|---|
System.String |
StartIndex
The start position of the search. After the search, this property points to the begin of an expression.
Declaration
public int StartIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Text
The text with embedded expressions.
Declaration
public FastString Text { get; set; }
Property Value
Type | Description |
---|---|
FastString |