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 EndEdit method it is possible to edit the text using various specialized methods of the component.

Example

Executing the example requires a form with a button on named Button1, the ErAnalyzerTitle component named ErAnalyzerTitle1 and a 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 inscription is inserted into the text.

See also:

IErAnalyzerTitle