- 积分
- 987
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2016-5-5
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
代码学习中,希望能穷尽每一句代码 把属性false改成true 貌似没有变化,在帮助文档里面也没有找到 MapDocument.IsLayoutView = false;//
_mapView.IsLayoutMap = false; //
IsLayoutView和IsLayoutMap属性表示什么意思?
在MeteoInfoLib_CSharp-master找到了IsLayoutView的源码,当MapDocument.IsLayoutView = false;时,执行aMF.IsFireMapViewUpdate = false;,不知道IsFireMapViewUpdate属性什么意思?
/// Get or set if is layout view
public bool IsLayoutView
{
get { return _isLayoutView; }
set
{
_isLayoutView = value;
if (_isLayoutView)
{ if (_mapLayout != null)
{
foreach (MapFrame aMF in _mapFrames)
aMF.IsFireMapViewUpdate = true;
if (_mapLayout.HasLegendElement)
_mapLayout.ActiveLayoutMap.FireMapViewUpdatedEvent();
}
}
else
{ if (_mapLayout != null)
{ foreach (MapFrame aMF in _mapFrames)
aMF.IsFireMapViewUpdate = false;
}
}
}
}
|
|