다음을 통해 공유


WebPartZoneCollection 생성자

정의

WebPartZoneCollection 클래스의 새 인스턴스를 초기화합니다.

오버로드

WebPartZoneCollection()

WebPartZoneCollection 클래스의 빈 인스턴스를 초기화합니다.

WebPartZoneCollection(ICollection)

WebPartZoneCollection 개체의 컬렉션을 전달하여 WebPartZone 클래스의 인스턴스를 초기화합니다.

설명

WebPartZoneCollection 생성자는 웹 파트 컨트롤 집합의 WebPartManager 다른 컨트롤 또는 사용자 지정 개발자 코드에서 컨트롤에서 웹 파트 페이지에 있는 컨트롤의 WebPartZone 읽기 전용 컬렉션을 만드는 데 사용됩니다.

WebPartZoneCollection()

WebPartZoneCollection 클래스의 빈 인스턴스를 초기화합니다.

public:
 WebPartZoneCollection();
public WebPartZoneCollection ();
Public Sub New ()

설명

컨트롤은 WebPartManager 자체 생성자 내에서 이 생성자를 사용하여 웹 파트 페이지에 대한 클래스의 WebPartZoneCollection 새 인스턴스를 초기화합니다.

추가 정보

적용 대상

WebPartZoneCollection(ICollection)

WebPartZoneCollection 개체의 컬렉션을 전달하여 WebPartZone 클래스의 인스턴스를 초기화합니다.

public:
 WebPartZoneCollection(System::Collections::ICollection ^ webPartZones);
public WebPartZoneCollection (System.Collections.ICollection webPartZones);
new System.Web.UI.WebControls.WebParts.WebPartZoneCollection : System.Collections.ICollection -> System.Web.UI.WebControls.WebParts.WebPartZoneCollection
Public Sub New (webPartZones As ICollection)

매개 변수

webPartZones
ICollection

ICollection 개체의 WebPartZone입니다.

예외

영역의 컬렉션이 null인 경우

컬렉션의 개체 중 하나가 null이거나 WebPartZone 형식이 아닌 경우

예제

다음 코드 예제에서는 WebPartZoneCollection 생성자입니다. 예제의 전체 코드는 클래스 개요의 예제 섹션에 있습니다 WebPartZoneCollection .

코드의 다음 섹션에서는 속성 값을 Zones 검색하여 개체를 변수에 할당 WebPartZoneCollection 합니다. 원하는 경우 속성의 Zones 모든 영역을 할당하는 대신 페이지에 있는 모든 영역의 하위 집합을 포함하는 개체 배열 WebPartZoneBase 을 만들고 배열을 새 WebPartZoneCollection 개체에 할당할 수 있습니다.

protected void Button5_Click(object sender, EventArgs e)
{
  Label1.Text = String.Empty;

  WebPartZoneCollection zoneCollection = mgr.Zones;
  foreach (WebPartZone zone in zoneCollection)
  {

    if (zone.WebPartVerbRenderMode == WebPartVerbRenderMode.Menu)
      zone.WebPartVerbRenderMode = WebPartVerbRenderMode.TitleBar;
    else
      zone.WebPartVerbRenderMode = WebPartVerbRenderMode.Menu;
  }
}
Protected Sub Button5_Click(ByVal sender As Object, ByVal e As EventArgs)
  Label1.Text = String.Empty

  Dim zoneCollection As WebPartZoneCollection = mgr.Zones
  Dim zone As WebPartZone
  For Each zone In zoneCollection
    If zone.WebPartVerbRenderMode = WebPartVerbRenderMode.Menu Then
      zone.WebPartVerbRenderMode = WebPartVerbRenderMode.TitleBar
    Else
      zone.WebPartVerbRenderMode = WebPartVerbRenderMode.Menu
    End If
  Next zone

End Sub

컬렉션을 만든 후에는 컬렉션을 쉽게 반복하고 포함된 모든 영역 또는 해당 콘텐츠에 대해 작업을 수행할 수 있습니다. 예제 코드를 실행하려면 브라우저에서 페이지를 로드하고 각 영역에서 동사 렌더링 모드 토글 단추를 클릭합니다. 영역에 포함된 각 서버 컨트롤의 제목 표시줄에 있는 동사가 렌더링되는 방식을 대체합니다. 동사는 드롭다운 메뉴에 표시되거나 제목 표시줄의 링크로 직접 나타날 수 있습니다.

설명

개체의 WebPartZoneCollection 사용자 지정 컬렉션을 WebPartZone 만들어 프로그래밍 방식으로 작업을 수행하려는 경우 생성자를 사용합니다. 예를 들어 속성에 Zones 액세스하고 웹 파트 페이지에서 개체의 WebPartZone 하위 집합을 만들어 개체에 할당 WebPartZoneCollection 한 다음 해당 영역 하위 집합의 자식 컨트롤 또는 다양한 속성에 대한 작업을 수행할 수 있습니다.

추가 정보

적용 대상