Class FindTextArgs
This class is used to pass find arguments to some methods of the CodeUtils class.
Inheritance
System.Object
FindTextArgs
Namespace: FastReport.Code
Assembly: FastReport.Base.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 |