IStatMethod.DisplayName

Syntax

DisplayName: String;

Description

The DisplayName property returns the displayed method name.

Example

To execute the example, add a link to the Stat system assembly.

Sub UserProc;
Var
    LinR: ISmLinearRegress;
Begin
    LinR := New SmLinearRegress.Create;
    Debug.WriteLine("External name: " + LinR.DisplayName);
    Debug.WriteLine("Internal name: " + LinR.Name);
End Sub Button2OnClick;

After executing the example the console window displays external and internal names for the method.

See also:

IStatMethod