Click or drag to resize

CTExtensionStoreExportSettings Method

Store arbitrary data to given export profile's data slot for your extension. You may store easily one string and one integer per export profile, or even unlimited bytearray.

To store settings that consider links to other CT objects, use StoreExportProfileLinkToDBObject(ICTExportProfile, SQLObjectType, Int32, Int32) so the object IDs are handled correctly in import/export.


Namespace: CTExtensions
Assembly: CTInterface (in CTInterface.dll) Version: 25.0
Syntax
public bool StoreExportSettings(
	ICTExportProfile oExportProf,
	string strData,
	int intData = 0,
	byte[] byteData = null
)

Parameters

oExportProf  ICTExportProfile
Profile to store data to
strData  String
String data to store
intData  Int32  (Optional)
Integer data to store
byteData  Byte  (Optional)
Bytearray data to store

Return Value

Boolean
True if no error, false otherwise
See Also