CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

AutoCAD 2022 开发者帮助

IgnoredByUserGet 方法 (ActiveX/CSP)

2024-5-18 18:46| 发布者: admin| 查看: 62| 评论: 0|原作者: admin|来自: AutoCAD

IgnoredByUserGet 方法 (ActiveX/CSP)

报告用户是否忽略错误以及用户的名称。

支持的平台:仅限 Windows

命名空间:AcStMgr (英语)

集会:AcStMgr.tlb

签名

VB.NET:

object.IgnoredByUserGet(bIgnored, UserName)

C#:

object.IgnoredByUserGet(ref bIgnored, ref UserName);
对象

类型:AcStError 对象

此方法应用到的对象。

b已忽略

访问:输入/输出

类型:布尔

  • False:用户忽略了错误
  • True:用户未忽略错误
用户名

访问:输入/输出

类型:字符串

忽略错误的用户的名称。

返回值 (RetVal)

无返回值。

言论

没有其他评论。

发行信息

释放:AutoCAD 2004 及更高版本

  • AcStMgr.tlb - AutoCAD 2004 及更高版本

例子

VB.NET:

Public Function GetError() As AcStError Implements IAcStPlugin2.GetError
    ' Gets the ignore status of an error and outputs the information to the Output window
    Dim bFlag As Boolean = False
    Dim sName As String = ""
    m_pError.IgnoredByApplicationGet(bFlag, sName)
    Debug.Print(vbLf + "Ignored status: " + bFlag.ToString() + "  App Name: " + sName)

    m_pError.IgnoredByUserGet(bFlag, sName)
    Debug.Print(vbLf + "Ignored status: " + bFlag.ToString() + "  User Name: " + sName)

    Return m_pError
End Function

C#:

public AcStError GetError()
{
    // Gets the ignore status of an error and outputs the information to the Output window
    bool bFlag = false;
    string sName = "";
    m_pError.IgnoredByApplicationGet(bFlag, sName);
    Debug.Print("\nIgnored status: " + bFlag.ToString() + "  App Name: " + sName);

    m_pError.IgnoredByUserGet(bFlag, sName);
    Debug.Print("\nIgnored status: " + bFlag.ToString() + "  User Name: " + sName);

    return m_pError;
}

路过

雷人

握手

鲜花

鸡蛋

最新评论

QQ|Archiver|CAD开发者社区 ( 苏ICP备2022047690号-1   苏公网安备32011402011833)

GMT+8, 2024-12-15 11:42

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部