| UserOptionsExtensionGetSaveData Method |
Called after
Validate. Provide the data you wish to save.
Namespace: CTExtensions.InterfacesAssembly: CTInterface (in CTInterface.dll)
Syntax public abstract byte[] GetSaveData(
out bool bCancelSave
)
Public MustOverride Function GetSaveData (
<OutAttribute> ByRef bCancelSave As Boolean
) As Byte()
Parameters
- bCancelSave
- Type: SystemBoolean
True to cancel save. Avoid using this; use Validate instead and always return false here.
Return Value
Type:
ByteMust return the data to store for current extension. See
LoadData(Byte) for loading the data.
Availability See Also