www.mxdraw.com
内容索引主面
前一个向上下一个
MxDrawXCustomEvent::Mx_UpdateDisplay 方法

控件窗口显示更新事件,一般显示内容发生了变化,会调用该事件

IDL
static void Mx_UpdateDisplay(LONG isUpAllBuffer);
参数 
说明 
LONG isUpAllBuffer 
是否所有显示缓存都被更新显示. 

例如: JS下的代码

    <script>

    function CustomEvent(sEventName)
    {
       if(sEventName == "Mx_UpdateDisplay")
       {
          // 视区更新
         // alert("Mx_UpdateDisplay");

          var eventParam = document.getElementById("MxDrawXCtrl1").CustomEventParam();
          if(eventParam.AtLong(0) == 1)
          {
            alert("更新显示缓存");
           }
       }
    }

    document.getElementById("MxDrawXCtrl1").ImplementCustomEvent = CustomEvent;

    </script>
Copyright (c) 2010. All rights reserved.
你认为该帮助怎么样? 发送反馈信息!