天软金融分析.NET函数大全 > GUI函数 > 消息对话框的返回字

idIgnore    

简述
消息对话框返回字,表明用户选中了Ignore按钮。
定义
idIgnore():Integer;
参数
名称类型说明
返回Integer 整数
  • 范例




    a:=3;

    b:=rdo2 MessageBox('a>2,要继续吗?','测试对话框',rdo2 mb_AbortRetryIgnore ());

    if b=rdo2 idIgnore () then return 1;

    else return 0;



    返回结果如选择Ignore按钮,则返回1,否则返回0 。
相关