Provides read-only access to the drawing database in the given file.
C#
public static AcadDatabase OpenReadOnly(
string fileName,
OpenReadOnlyOptions options = null
)VB
Public Shared Function OpenReadOnly (
fileName As String,
Optional options As OpenReadOnlyOptions = Nothing
) As AcadDatabase- fileName
- Type: string
The name of the drawing database to open. - options (Optional)
- Type: OpenReadOnlyOptions
Options for opening the database.
Type: AcadDatabase
The AcadDatabase instance.
Back to Top