This .NET class wraps the AcDbHomeView ObjectARX class.
This class objectifies the navigation home view.
Autodesk.AutoCAD.DatabaseServices.DbHomeView
Public Class DbHomeView Inherits DisposableWrapper Inherits ICloneable
public class DbHomeView : DisposableWrapper, ICloneable;
DbHomeView hv = HostApplicationServices.WorkingDatabase.HomeView;
AutoCAD.Geometry.Point3d pt = new AutoCAD.Geometry.Point3d(-1, -1, -1);
hv.Center = pt;
HostApplicationServices.WorkingDatabase.HomeView = hv;
Comments? |