Skip to content

Latest commit

 

History

History
57 lines (46 loc) · 8.8 KB

T_Linq2Acad_AcadDatabase.md

File metadata and controls

57 lines (46 loc) · 8.8 KB

AcadDatabase Class

The main class that provides access to the drawing database.

Overview

Properties

 

NameDescription
Public propertyBlocks Provides access to the elements of the Block table and methods to create, add and import BlockTableRecords.
Public propertyCurrentSpace Provides access to the entities of the currently active space. In addition to the standard LINQ operations this class provides methods to add, import and clear Entities.
Public propertyDatabase The drawing database in use.
Public propertyDbObjects Provides access to all database objects. In addition to the standard LINQ operations this class provides a method to add newly created DBObjects.
Public propertyGroups Provides access to the elements of the Group dictionary and methods to create, add and import Groups.
Public propertyLayers Provides access to the elements of the Layer table and methods to create, add and import LayerTableRecords.
Public propertyLayouts Provides access to the elements of the Layout dictionary and methods to create, add and import Layouts.
Public propertyLinetypes Provides access to the elements of the Linetype table and methods to create, add and import LinetypeTableRecords.
Public propertyMaterials Provides access to the elements of the Material dictionary and methods to create, add and import Materials.
Public propertyModelSpace Provides access to the entities of the model space. In addition to the standard LINQ operations this class provides methods to add, import and clear Entities.
Public propertyPaperSpace Provides access to the entities of the paper space layouts.
Public propertyPlotSettings Provides access to the elements of the PlotSettings dictionary and methods to create, add and import PlotSettings.
Public propertyRegApps Provides access to the elements of the RegApp table and methods to create, add and import RegAppTableRecords.
Public propertyStyles Provides access to all style related tables and dictionaries.
Public propertySummaryInfo Provies access to the summary info.
Public propertyUcss Provides access to the elements of the Ucs table and methods to create, add and import UcsTableRecords.
Public propertyViewports Provides access to the elements of the Viewport table and methods to create, add and import ViewportTableRecords.
Public propertyViews Provides access to the elements of the View table and methods to create, add and import ViewTableRecords.
Public propertyXRefs Provides access to all XRef elements and methods to attach, overlay, resolve, reload and unload XRefs.
  Back to Top

Methods

 

ClassDescription
Public methodAbort() Immediately discards all changes and aborts the underlying transaction. The session is no longer usable after calling this method.
Public methodDispose() Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Back to Top

Static Methods

 

ClassDescription
Public methodStatic memberActive() Provides access to the drawing database of the active document.
Public methodStatic memberActive(Transaction, bool, bool) Provides access to the drawing database of the active document. This is an advanced feature, use with caution.
Public methodStatic memberCreate([CreateOptions]) Provides access to a newly created drawing database.
Public methodStatic memberOpenForEdit(string, [OpenForEditOptions]) Provides read/write access to the drawing database in the given file.
Public methodStatic memberOpenReadOnly(string, [OpenReadOnlyOptions]) Provides read-only access to the drawing database in the given file.
Public methodStatic memberUse(Database) Provides access to the given drawing database.
Public methodStatic memberUse(Database, Transaction, bool, bool) Provides access to the given drawing database. This is an advanced feature, use with caution.
Back to Top

See Also

Reference

Linq2Acad Namespace