DataGrid.RowHeaderWidth Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá nebo nastaví šířku záhlaví řádků.
public:
property int RowHeaderWidth { int get(); void set(int value); };
public int RowHeaderWidth { get; set; }
member this.RowHeaderWidth : int with get, set
Public Property RowHeaderWidth As Integer
Hodnota vlastnosti
Šířka záhlaví řádků v sadě DataGrid. Výchozí hodnota je 35.
Příklady
Následující příklad kódu ukazuje použití tohoto člena.
// Get the width of row header.
private:
void button9_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
{
Int32 myRowHeaderWidth = myDataGrid->RowHeaderWidth;
MessageBox::Show( String::Concat( "Width of row headers is: ", myRowHeaderWidth ), "Message", MessageBoxButtons::OK, MessageBoxIcon::Exclamation );
}
// Get the width of row header.
private void button9_Click(object sender, EventArgs e)
{
Int32 myRowHeaderWidth = myDataGrid.RowHeaderWidth;
MessageBox.Show("Width of row headers is: "+
myRowHeaderWidth.ToString(), "Message",
MessageBoxButtons.OK,MessageBoxIcon.Exclamation);
}
' Get the width of row header.
Private Sub button9_Click(ByVal sender As Object, ByVal e As EventArgs) Handles button9.Click
Dim myRowHeaderWidth As Int32 = myDataGrid.RowHeaderWidth
MessageBox.Show("Width of row headers is: " + myRowHeaderWidth.ToString(), "Message", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
End Sub