laptop and a wrench

不具合

Custom graphic element code crashes ArcMap at ArcGIS 10 SP3 on call to IActiveView.PartialRefresh - same code works successfully at ArcGIS 10 SP2.

最後に公開された状態: August 25, 2014 No Product Found
不具合 ID 番号 NIM074715
送信されましたOctober 27, 2011
最終更新日April 28, 2025
適用対象No Product Found
見つかったバージョン10.0
プログラム言語C#
ステータスDuplicate

参考情報

NIM074919

対処法

In order to work with SP3, add the IGraphicsComposite and IEnumElement interfaces to you custom element class: Example implementation: #region IGraphicsComposite Members public IEnumElement get_Graphics(IDisplay Display, object Data) { return this; } #endregion #region IEnumElement Members private int enumIndex = 0; public IElement Next() { if (enumIndex == 0) { enumIndex++; IElement element = new PolygonElementClass(); element.Geometry = m_customElement; return element; } throw new COMException("Iterator End", 1); return null; } public void Reset() { enumIndex = 0; } #endregion

再現の手順

不具合 ID: NIM074715

ソフトウェア:

  • No Product Found

バグのステータスが変更されたときに通知を受け取る

Esri Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動