CustomProcessUI_GetUpdatedXML Function

Applies To: Implementing a custom process

Returns the updated Process XML.

[C#]

string GetUpdatedXML();

Arguments

None

Return Value

XML string representing the updated process properties.

Reporting errors and warnings: A false return value can be regarded as an error which can be obtained by calling the GetStatus function which will give out the error message for the last error in the dll.

Example

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

[C#]

public string GetUpdatedXML()

{

    return myProcessXMLDom.OuterXML;

}

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_GetStatus, CustomProcessUI_GetProperty, CustomProcessUI_SetProperty, CustomProcessUIForm_Init