DbHomeView Class

Autodesk.AutoCAD.DatabaseServices.DbHomeView
Visual Basic
Public Class DbHomeView
Inherits DisposableWrapper
Inherits ICloneable
C#
public class DbHomeView : DisposableWrapper, ICloneable;
Description

 

This .NET class wraps the AcDbHomeView ObjectARX class. 

 

This class objectifies the navigation home view. 

 

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