Opens a database in memory.
For internal use only.
Supported platforms: Windows only
Namespace: TRANSMITTALLib
Assembly: acETransmit20.tlb
VB.NET:
Friend Class custom_class_name
Implements ITransmittalFileOperationOverride
Public Sub Open(ByRef fileName As <Unsupported variant type>, attemptToRecover As Long, ByRef ppDb As System.IntPtr) _
Implements ITransmittalFileOperationOverride.Open
...
End Sub
End Class
C#:
internal class custom_class_name : ITransmittalFileOperationOverride
{
public void Open(ushort fileName, long attemptToRecover, System.IntPtr ppDb)
{
...
}
}
The name of the custom class.
Access: Input-only
Type: UShort (<Unsupported variant type>)
Name of the drawing file to open in memory.
Access: Input-only
Type: Long
Access: Input-only
Type: Any (Pointer)
Pointer to the database object of the drawing file being opened.
No return value.
This method is for internal use only.
Releases: AutoCAD 2009 and later
VB.NET:
Not available
C#:
Not available