DataGridTableStyle.ResetHeaderFont 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
HeaderFont 속성을 기본값으로 다시 설정합니다.
public:
void ResetHeaderFont();
public void ResetHeaderFont ();
member this.ResetHeaderFont : unit -> unit
Public Sub ResetHeaderFont ()
예제
다음 코드 예제에서는이 멤버를 사용 하는 방법을 보여 줍니다.
private:
void MySetButton_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Set the 'HeaderFont' property of the DataGridTableStyle instance.
myTableStyle->HeaderFont = gcnew System::Drawing::Font( "Impact",10 );
// Add the DataGridTableStyle instance to the GridTableStylesCollection.
myDataGrid->TableStyles->Add( myTableStyle );
}
void MyResetButton_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Reset the Header Font to its default value.
myTableStyle->ResetHeaderFont();
}
private void MySetButton_Click(object sender, EventArgs e)
{
// Set the 'HeaderFont' property of the DataGridTableStyle instance.
myTableStyle.HeaderFont=new Font("Impact",10);
// Add the DataGridTableStyle instance to the GridTableStylesCollection.
myDataGrid.TableStyles.Add(myTableStyle);
}
private void MyResetButton_Click(object sender, EventArgs e)
{
// Reset the Header Font to its default value.
myTableStyle.ResetHeaderFont();
}
Private Sub MySetButton_Click(ByVal sender As Object, ByVal e As EventArgs)
' Set the 'HeaderFont' property of DataGridTableStyle instance.
myTableStyle.HeaderFont = New Font("Impact", 10)
' Add the DataGridTableStyle instance to the GridTableStylesCollection.
myDataGrid.TableStyles.Add(myTableStyle)
End Sub
Private Sub MyResetButton_Click(ByVal sender As Object, ByVal e As EventArgs)
' Reset the Header Font to its default value.
myTableStyle.ResetHeaderFont()
End Sub
설명
일반적으로 디자이너를 만들거나 컨트롤을 통합하는 고유한 컨트롤을 DataGridTableStyle 만드는 경우 이 메서드를 DataGridTableStyle사용합니다.