TemplateGroupCollection.Item[Int32] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定位於集合中指定索引上的 TemplateGroup 物件。
public:
property System::Web::UI::Design::TemplateGroup ^ default[int] { System::Web::UI::Design::TemplateGroup ^ get(int index); void set(int index, System::Web::UI::Design::TemplateGroup ^ value); };
public System.Web.UI.Design.TemplateGroup this[int index] { get; set; }
member this.Item(int) : System.Web.UI.Design.TemplateGroup with get, set
Default Public Property Item(index As Integer) As TemplateGroup
參數
- index
- Int32
要在集合中取得或設定之 TemplateGroup 的以零起始的索引。
屬性值
集合中 index
處的 TemplateGroup。
例外狀況
備註
Item[]使用索引器來擷取集合內指定index
之 的群組,或是在集合內指定的 index
位置設定群組。 您可以使用數位表示法,為集合中的項目編製索引。 例如,您可以使用 Microsoft VisualBasic 或 TemplateGroups[i]
C# 的表示法TemplateGroups(i)
,在索引處為專案編製索引i
。
當您有群組對象的參考,而且需要集合中物件的索引時,請使用 IndexOf 方法。