DataGrid.PreferredRowHeight Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define a altura preferencial da linha para o controle DataGrid.
public:
property int PreferredRowHeight { int get(); void set(int value); };
public int PreferredRowHeight { get; set; }
member this.PreferredRowHeight : int with get, set
Public Property PreferredRowHeight As Integer
Valor da propriedade
A altura de uma linha.
Exemplos
O exemplo de código a seguir primeiro define uma nova fonte e define a PreferredRowHeight mesma altura que a nova fonte.
private:
void ChangeFontHeight( DataGrid^ myGrid )
{
myGrid->Font = gcnew System::Drawing::Font(
"Microsoft Sans Serif",
15, System::Drawing::FontStyle::Regular );
myGrid->PreferredRowHeight = myGrid->Font->Height;
}
private void ChangeFontHeight(DataGrid myGrid)
{
myGrid.Font = new System.Drawing.Font
("Microsoft Sans Serif",
15, System.Drawing.FontStyle.Regular);
myGrid.PreferredRowHeight = myGrid.Font.Height;
}
Private Sub ChangeFontHeight(ByVal myGrid As DataGrid)
' Change the font first.
myGrid.Font = New System.Drawing.Font _
("Microsoft Sans Serif", 15, _
System.Drawing.FontStyle.Regular)
myGrid.PreferredRowHeight = myGrid.Font.Height
End Sub
Comentários
Defina essa propriedade antes de redefinir as propriedades e DataMember as DataSource propriedades (separadamente ou por meio do SetDataBinding método) ou a propriedade não terá efeito.