다음을 통해 공유


WebPartDescription.ID 속성

정의

해당 WebPart 컨트롤의 ID를 가져옵니다.

public:
 property System::String ^ ID { System::String ^ get(); };
public string ID { get; }
member this.ID : string
Public ReadOnly Property ID As String

속성 값

컨트롤의 ID가 포함된 문자열입니다.

예제

다음 코드 예제에서는 프로그래밍 방식으로 사용 하는 ID 속성입니다. 이 코드 예제를 실행하는 데 필요한 전체 코드는 클래스 개요 항목의 예제 섹션을 WebPartDescription 참조하세요.

웹 페이지의 메서드에 있는 Button1_Click 다음 코드는 메서드를 사용하여 GetAvailableWebPartDescriptions 카탈로그의 WebPartDescription 개체 컬렉션을 가져오는 방법을 보여 줍니다. 그런 다음 개체를 WebPartDescription 반복하여 카탈로그에서 각 WebPart 컨트롤의 세부 정보를 표시합니다. ID 속성 값은 다음 코드에서 검색됩니다.

protected void Button1_Click(object sender, EventArgs e)
{
  Label1.Text = String.Empty;
  
  WebPartDescriptionCollection descriptions = 
    DeclarativeCatalogPart1.GetAvailableWebPartDescriptions();

  foreach (WebPartDescription desc in descriptions)
  {
    Label1.Text += "ID: " + desc.ID + "<br />" +
      "Title: " + desc.Title + "<br />" +
      "Description: " + desc.Description + "<br />" +
      "ImageUrl: " + desc.CatalogIconImageUrl + "<br />" +
      "<hr />";
  }
}
Protected Sub Button1_Click(ByVal sender As Object, _
  ByVal e As System.EventArgs)
  
  Label1.Text = String.Empty
      
  Dim descriptions As WebPartDescriptionCollection = _
   DeclarativeCatalogPart1.GetAvailableWebPartDescriptions()
          
  Dim desc As WebPartDescription
      
  For Each desc In descriptions
    Label1.Text += "ID: " & desc.ID & "<br />" & _
      "Title: " & desc.Title & "<br />" & _
      "Description: " & desc.Description & "<br />" & _
      "ImageUrl: " & desc.CatalogIconImageUrl & "<br />" & _
      "<hr />"
  Next
  
End Sub

설명

속성의 ID 값은 일 수 없으며 null항상 값이 있어야 합니다. 속성은 ID 속성에 직접 Control.ID 해당합니다.

속성은 ID 페이지가 카탈로그 표시 모드에 있고 WebPart 컨트롤 카탈로그에 컨트롤이 표시되는 경우에만 적용됩니다.

적용 대상

추가 정보