  | CTInterfaceGetXMLData Method | 
            When 
OnSaveToStoragePre is invoked (during document save-operation),
            this function can be used to retrieve current CustomScope data in XML.
            
            Modified data can be sent back for CUSTOMTOOLS with SetXMLData using the same key.
            
            
 Namespace: ATR.CT.CTInterfaceAssembly: CTInterface (in CTInterface.dll) Version: 25.0
Syntaxpublic string GetXMLData(
	string oKey
)
Public Function GetXMLData ( 
	oKey As String
) As String
Parameters
- oKey  String
 - 
            CTEngineLib.ctPropertyScope.ctPropertyScopeCustom1, ...2, ...3 or ...4's integer value as string. 
            Eg. 
var oKey = "" + (int)CTEngineLib.ctPropertyScope.ctPropertyScopeCustom1; 
 
Return Value
String
            Data that CUSTOMTOOLS is about to store for the document provided with previous OnSaveToStoragePre -event. 
            The XML format is not guaranteed to stay same in the future.
            
Revision History| Date | Version | Description | 
|---|
| - | 2015 SP2 | First Release | 
See Also