Share

DbHomeView Class

Description

This .NET class wraps the AcDbHomeView ObjectARX class.

This class objectifies the navigation home view.

Class Hierarchy

Autodesk.AutoCAD.DatabaseServices.DbHomeView

C#

public class DbHomeView : DisposableWrapper, ICloneable;

Visual Basic

Public Class DbHomeView
Inherits DisposableWrapper
Inherits ICloneable

Example

DbHomeView hv = HostApplicationServices.WorkingDatabase.HomeView;
AutoCAD.Geometry.Point3d pt = new AutoCAD.Geometry.Point3d(-1, -1, -1);
hv.Center = pt;
HostApplicationServices.WorkingDatabase.HomeView = hv;

Links

DbHomeView Methods, DbHomeView Operators, DbHomeView Properties

Was this information helpful?