TimerArray.Item[Int16] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
依索引取得 TimerArray 的特定項目。 唯讀。
public:
property System::Windows::Forms::Timer ^ default[short] { System::Windows::Forms::Timer ^ get(short Index); };
public System.Windows.Forms.Timer this[short Index] { get; }
member this.Item(int16) : System.Windows.Forms.Timer
Default Public ReadOnly Property Item(Index As Short) As Timer
參數
- Index
- Int16
Short
,指定控制項陣列中某項目的位置。
屬性值
Timer,位於控制項陣列中的指定 Index
。
備註
屬性 Item
是控件數位的預設屬性。 因此,下列幾行程式代碼相等。
MsgBox(CStr(TimerArray.Item(1).Text))
MsgBox(CStr(TimerArray(1).Text))
注意
Microsoft.VisualBasic.Compatibility.VB6 命名空間中的函式和物件都是供這些工具使用,以便從 Visual Basic 6.0 升級至 Visual Basic。 在大多數情況下,這些函式和物件會複製在 .NET Framework 其他命名空間中可以找到的功能。 只有當 Visual Basic 6.0 程式碼模型與 .NET Framework 實作有顯著差異時,才會需要這些函式和物件。