Table of Contents

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

objectFindTextArgs

Properties

CloseBracket

The char sequence used to find the expression's end.

public string CloseBracket { get; set; }

Property Value

string

EndIndex

After the search, this property points to the end of an expression.

public int EndIndex { get; set; }

Property Value

int

FoundText

The last found expression.

public string FoundText { get; set; }

Property Value

string

OpenBracket

The char sequence used to find the expression's begin.

public string OpenBracket { get; set; }

Property Value

string

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

int

Text

The text with embedded expressions.

public string Text { get; set; }

Property Value

string