CustomProcessUI_GetStatus Function

Applies To: Implementing a custom process

Return the status describing the error if any occurred.

[C#]

string GetStatus();

Arguments

None

Return Value

A string describing the error.

Example

The following example represents a C# implementation of this function:

[C#]

public string GetStatus()

{

    return myStatus.ToString();

}

For a detailed example on how to implement this function, see Sample custom process.

Related Topics

See also: CustomProcess_Create, CustomProcess_SetWindow, CustomProcess_Initialize, CustomProcess_GetRow, CustomProcess_GetMetadata, CustomProcess_GetLastError, CustomProcess_Cleanup, CustomProcess_SetCallbackFunctions, CustomProcess_SetAreaOfInterest, CustomProcessUI_Init, CustomProcessUI_ShowModalDialog, CustomProcessUI_GetUpdatedXML, CustomProcessUI_GetProperty, CustomProcessUI_SetProperty, CustomProcessUIForm_GetUpdatedXML, CustomProcessUIForm_Init