다음을 통해 공유


HiddenFieldDesigner.GetDesignTimeHtml 메서드

정의

디자인 타임에, 연결된 컨트롤을 렌더링하는 데 사용되는 태그를 가져옵니다.

public:
 override System::String ^ GetDesignTimeHtml();
public override string GetDesignTimeHtml ();
override this.GetDesignTimeHtml : unit -> string
Public Overrides Function GetDesignTimeHtml () As String

반환

디자인 타임에 HiddenField를 렌더링하는 데 사용되는 태그를 포함한 문자열입니다.

예제

다음 코드 예제에서는 재정의 하는 방법을 보여 줍니다.는 GetDesignTimeHtml 에서 상속 된 클래스에서 메서드를 HiddenFieldDesigner 클래스의 모양을 변경 하는 HiddenField 디자인 타임에 컨트롤입니다. 재정의는 GetDesignTimeHtml 컨트롤 클래스 이름 및 속성과 ID 함께 자리 표시자의 속성을 포함하는 Value 자리 표시자를 생성합니다.

// Generate the design-time markup.
public override string GetDesignTimeHtml()
{
    // Get a reference to the control or a copy of the control.
    MyHiddenField myHF = (MyHiddenField)ViewControl;

    // Create a placeholder that displays the control value.
    string markup = CreatePlaceHolderDesignTimeHtml(
         "Value: \"" + myHF.Value.ToString() + "\"" );

    return markup;
} // GetDesignTimeHtml
' Generate the design-time markup.
Public Overrides Function GetDesignTimeHtml() As String

    ' Get a reference to the control or a copy of the control.
    Dim myHF As MyHiddenField = CType(ViewControl, MyHiddenField)

    Dim markup As String = _
        CreatePlaceHolderDesignTimeHtml( _
            "Value: """ & myHF.Value.ToString() & """" )

    Return markup

End Function ' GetDesignTimeHtml

설명

메서드는 GetDesignTimeHtml 컨트롤 클래스 이름과 속성을 포함하는 자리 표시자에 대한 태그를 ID 생성합니다.

적용 대상

추가 정보