SineWave_GeometricEffect VB.NET sample has several issues that need to be fixed.
最後に公開された状態: August 25, 2014No Product Found
不具合 ID 番号
NIM004810
送信されました
October 17, 2006
最終更新日
June 5, 2024
適用対象
No Product Found
見つかったバージョン
9.2 RC
プログラム言語
VB.Net
ステータス
Will Not Be Addressed
開発チームは、この問題またはリクエストを検討した結果、これに対処しないことに決定しました。 問題の「参考情報」セクションに、さらに詳細な説明が示されていることがあります。
参考情報
We apologize that we were unable to address this issue within the current product support cycle. If the issue continues to affect your work in a supported release, please contact Technical Support.
対処法
1. Problem with the textbox labels can be fixed by writing the implementation for ID property as shown below: Public ReadOnly Property ID(ByVal attrIndex As Integer) As Integer Implements <a href="http://ESRI.ArcGIS.Display.IGraphicAttributes.ID" target="_blank">ESRI.ArcGIS.Display.IGraphicAttributes.ID</a> Get 'THIS FIXES THE PROBLEM WITH THE TEXTBOX LABELS... If ((attrIndex >= 0) And (attrIndex < 2)) Then Return attrIndex Else Return -1 End If End GetEnd Property2. Problem with the missing object can be fixed by placing ComClass attribute as shown below: <ComClass(SineWave.ClassId)> _Public Class SineWave