共用方式為


WebPartZoneCollection.CopyTo(WebPartZoneBase[], Int32) 方法

定義

複製集合至 WebPartZoneBase 物件的陣列。

public:
 void CopyTo(cli::array <System::Web::UI::WebControls::WebParts::WebPartZoneBase ^> ^ array, int index);
public void CopyTo (System.Web.UI.WebControls.WebParts.WebPartZoneBase[] array, int index);
member this.CopyTo : System.Web.UI.WebControls.WebParts.WebPartZoneBase[] * int -> unit
Public Sub CopyTo (array As WebPartZoneBase(), index As Integer)

參數

array
WebPartZoneBase[]

要包含已複製集合的 WebPartZoneBase 陣列。

index
Int32

放置集合內容的陣列起點。

範例

下列程式代碼範例示範 如何使用 CopyTo 方法。 範例的完整程序代碼,包括使用者控件、包含區域的頁面,以及包含程式代碼的部分類別檔案,可在類別概觀的 WebPartZoneCollection Example 區段中找到。

下列程式代碼區段示範 方法的使用 CopyTo 方式。 若要執行程式代碼,請在瀏覽器中載入頁面,然後按兩下 [ 陣列中的區域名稱 ] 按鈕。 區域集合會載入數位列中,而且所有區域標識碼都會複製到標籤中。

protected void Button3_Click(object sender, EventArgs e)
{
  Label1.Text = String.Empty;
  WebPartZoneBase[] zoneArray = new WebPartZoneBase[mgr.Zones.Count];
  mgr.Zones.CopyTo(zoneArray, 0);
  Label1.Text = zoneArray[2].ID;
  Label1.Text += ", " + zoneArray[1].ID;
  Label1.Text += ", " + zoneArray[0].ID;
}
Protected Sub Button3_Click(ByVal sender As Object, ByVal e As EventArgs)
  Label1.Text = String.Empty
  Dim zoneArray(mgr.Zones.Count) As WebPartZoneBase
  mgr.Zones.CopyTo(zoneArray, 0)
  Label1.Text = zoneArray(2).ID
  Label1.Text += ", " & zoneArray(1).ID
  Label1.Text += ", " & zoneArray(0).ID

End Sub

備註

當您想要建立可包含集合中WebPartZoneCollection區域、這些區域的子集或這些區域的超集的自定義數位時,此方法CopyTo會很有用。

適用於

另請參閱