Triggered before files in a transmittal set are processed.
For internal use only.
Supported platforms: Windows only
Namespace: TRANSMITTALLib
Assembly: AcETransmit19.tlb
VB.NET:
Friend Class custom_class_name Implements ITransmittalFileOperationOverride Public Sub PreProcessHandling(digitalSignedFiles As System.Array, ByRef isCancelled As Integer) _ Implements ITransmittalFileOperationOverride.PreProcessHandling ... End Sub End Class
C#:
internal class custom_class_name : ITransmittalFileOperationOverride { public void PreProcessHandling(System.Array digitalSignedFiles, int isCancelled) { ... } }
The name of the custom class.
Access: Input-only
Type: Unknown (Array of objects)
Array of drawing files in the transmittal set that are digitally signed.
Access: Input-only
Type: Integer
No return value.
This method is for internal use only.
Releases: AutoCAD 2004 and later
HRESULT _stdcall PreProcessHandling( [in] SAFEARRAY(IUnknown*) digitalSignedFiles, [out] long* cancelled);
HRESULT _stdcall PreProcessHandling( [in] SAFEARRAY(IUnknown*) emrFiles, [in] SAFEARRAY(IUnknown*) digitalSignedFiles, [out] long* cancelled);
VB.NET:
Not available
C#:
Not available