摘要: 这两个功能,和全图一样简单,也是继承CommandBase基类 public override void OnClick() { //Get IEnvelope interface IEnvelope pEnvelope = (IEnvelope)m_pActiveView.FullExtent; //Expand envelope and refresh the view pEnvelope.Expand(0.75, 0.75, true); m_pActiveView.Extent = pEnvelope; m_pActiveView.Refresh(); } pEnvelope 是当前的 阅读全文
posted @ 2011-08-14 19:48 象牛 阅读(2549) 评论(0) 推荐(0) 编辑