IErAnalyzerTitle.StartEdit

Syntax

StartEdit;

Description

The StartEdit method turns the title into the edit mode.

Comments

After calling the StartEdit method and before calling the IErAnalyzerTitle.EndEdit method one can edit the text using various specialized methods of the component.

Example

Executing the example requires a form with a button named Button1, the ErAnalyzerTitle component named ErAnalyzerTitle1 and the UiErAnalyzer component that is a data source for ErAnalyzerTitle1.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    ErAnalyzerTitle1.StartEdit;
    ErAnalyzerTitle1.InsertText("Test report");
    ErAnalyzerTitle1.EndEdit;
End Sub Button1OnClick;

Clicking the button changes the title text. The specified label is inserted into the text.

See also:

IErAnalyzerTitle