Class FindTextArgs
Namespace: FastReport.Olap.Code
Assembly: FastCube.Core.dll
This class is used to pass find arguments to some methods of the CodeUtils class.
public class FindTextArgs
Inheritance
Properties
CloseBracket
The char sequence used to find the expression's end.
public string CloseBracket { get; set; }
Property Value
EndIndex
After the search, this property points to the end of an expression.
public int EndIndex { get; set; }
Property Value
FoundText
The last found expression.
public string FoundText { get; set; }
Property Value
OpenBracket
The char sequence used to find the expression's begin.
public string OpenBracket { get; set; }
Property Value
StartIndex
The start position of the search. After the search, this property points to the begin of an expression.
public int StartIndex { get; set; }
Property Value
Text
The text with embedded expressions.
public string Text { get; set; }