TextBoxBase.ViewportHeight Özellik

Tanım

Kaydırılabilir içerik alanının dikey boyutunu alır.

public:
 property double ViewportHeight { double get(); };
public double ViewportHeight { get; }
member this.ViewportHeight : double
Public ReadOnly Property ViewportHeight As Double

Özellik Değeri

Double

Kaydırılabilir içerik alanının dikey boyutunu cihazdan bağımsız birimlerde (birim başına 1/96 inç) belirten kayan nokta değeri.

Metin düzenleme denetimi kaydırmayı destekleyecek şekilde yapılandırılmamışsa bu özelliğin değeri 0,0'dır.

Bu özelliğin varsayılan değeri yok.

Örnekler

Aşağıdaki örnekte özelliğin değerinin nasıl okunduğu gösterilmektedir ViewportHeight .

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

Şunlara uygulanır

Ayrıca bkz.