TextBoxBase.ViewportHeight 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á svislou velikost posouvání oblasti obsahu.
public:
property double ViewportHeight { double get(); };
public double ViewportHeight { get; }
member this.ViewportHeight : double
Public ReadOnly Property ViewportHeight As Double
Hodnota vlastnosti
Hodnota s plovoucí desetinnou čárkou, která určuje svislou velikost oblasti posouvání obsahu v jednotkách nezávislých na zařízeních (1/96 palců na jednotku).
Hodnota této vlastnosti je 0,0, pokud není ovládací prvek pro úpravy textu nakonfigurovaný tak, aby podporoval posouvání.
Tato vlastnost nemá výchozí hodnotu.
Příklady
Následující příklad ukazuje, jak číst hodnotu ViewportHeight vlastnosti.
private void initValues(object sender, EventArgs e)
{
myTB1.Text= "ExtentHeight is currently " + myTextBox.ExtentHeight.ToString();
myTB2.Text= "ExtentWidth is currently " + myTextBox.ExtentWidth.ToString();
myTB3.Text= "HorizontalOffset is currently " + myTextBox.HorizontalOffset.ToString();
myTB4.Text= "VerticalOffset is currently " + myTextBox.VerticalOffset.ToString();
myTB5.Text = "ViewportHeight is currently " + myTextBox.ViewportHeight.ToString();
myTB6.Text = "ViewportWidth is currently " + myTextBox.ViewportWidth.ToString();
radiobtn1.IsChecked = true;
}
Private Sub initValues(ByVal sender As Object, ByVal e As EventArgs)
myTB1.Text = "ExtentHeight is currently " + myTextBox.ExtentHeight.ToString()
myTB2.Text = "ExtentWidth is currently " + myTextBox.ExtentWidth.ToString()
myTB3.Text = "HorizontalOffset is currently " + myTextBox.HorizontalOffset.ToString()
myTB4.Text = "VerticalOffset is currently " + myTextBox.VerticalOffset.ToString()
myTB5.Text = "ViewportHeight is currently " + myTextBox.ViewportHeight.ToString()
myTB6.Text = "ViewportWidth is currently " + myTextBox.ViewportWidth.ToString()
radiobtn1.IsChecked = True