CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

ActiveX 开发指南

相关分类

重置方法 (ActiveX/CSP)

2023-1-2 20:27| 发布者: admin| 查看: 193| 评论: 0|来自: AutoCAD

摘要: 重置用于检查数据库的错误枚举器的位置,或重置对象以供重用。

重置用于检查数据库的错误枚举器的位置,或重置对象以供重用。

支持的平台:仅窗口

Namespace:AcStMgr

集会:AcStMgr.tlb

签名

VB.NET:

object.Reset()

C#:

object.Reset();
对象

类型:AcStErrorAcStErrorIteratorAcStFix对象

此方法适用的对象。

返回值(RetVal)

无返回值。

言论

对象的方法仅供内部使用。ResetAcStErrorIterator

发布信息

释放:AutoCAD 2004 及更高版本

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

例子

VB.NET:

Public Sub PlugIn_Clear() Implements IAcStPlugin2.Clear

    ' If the XML Document object exist, the plug-in is being used by the Batch Standards Checker.
    ' Output the standards items that were used for comparison to the Standards Items section.
    If IsNothing(m_xmlDoc) = False Then
        WriteStandardsItemsInfo()
    End If

    ' Clean up the global variables
    m_xmlDoc = Nothing
    m_pPlugin = Nothing
    m_curIndex = -1
    m_RecommendedFixIndex = -1
    m_FixCnt = 0
    m_pManager = Nothing
    m_pDWSDatabase = Nothing
    m_pCheckDatabase = Nothing

    If IsNothing(m_pError) = False Then
        m_pError.Reset()
        m_pError = Nothing
    End If

    ' << Change based on standards implementation >>
    If IsNothing(m_LayerCacheArray) = False Then
        Dim i As Integer
        For i = 0 To UBound(m_LayerCacheArray)
            If IsDBNull(m_LayerCacheArray(i).StandardsFix) = False Then
                m_LayerCacheArray(i).StandardsFix.Reset()
                m_LayerCacheArray(i).StandardsFix = Nothing
            End If
        Next
        Erase m_LayerCacheArray
    End If

    If IsNothing(m_FixArray) = False Then
        Erase m_FixArray
    End If

    m_ContextList.Clear()
End Sub

C#:

public void PlugIn_Clear()
{
    // If the XML Document object exist, the plug-in is being used by the Batch Standards Checker.
    // Output the standards items that were used for comparison to the Standards Items section.
    if ((m_xmlDoc == null) == false)
    {
        WriteStandardsItemsInfo();
    }

    // Clean up the global variables
    m_xmlDoc = null;
    m_pPlugin = null;
    m_curIndex = -1;
    m_RecommendedFixIndex = -1;
    m_FixCnt = 0;
    m_pManager = null;
    m_pDWSDatabase = null;
    m_pCheckDatabase = null;

    if ((m_pError == null) == false)
    {
        m_pError.Reset();
        m_pError = null;
    }

    // << Change based on standards implementation >>
    if ((m_LayerCacheArray == null) == false)
    {
        int i = 0;

        int nLBound = m_LayerCacheArray.GetLowerBound(0);
        int nUBound = m_LayerCacheArray.GetUpperBound(0);

        for (i = 0; i <= nUBound; i++)
        {
            if (m_LayerCacheArray[i].StandardsFix != null)
            {
                m_LayerCacheArray[i].StandardsFix.Reset();
                m_LayerCacheArray[i].StandardsFix = null;
            }
        }
        m_LayerCacheArray = null;
    }

    if ((m_FixArray == null) == false)
    {
        m_FixArray = null;
    }

    m_ContextList.Clear();
}

路过

雷人

握手

鲜花

鸡蛋

最新评论

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

GMT+8, 2024-5-12 05:57

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部