다음을 통해 공유


PenInputPanel.Height 속성

업데이트: 2007년 11월

사용되지 않습니다. 클라이언트 좌표의 펜 입력 패널 높이를 가져옵니다. PenInputPanel은 Microsoft.Ink.TextInput으로 대체되었습니다.

네임스페이스:  Microsoft.Ink
어셈블리:  Microsoft.Ink(Microsoft.Ink.dll)

구문

‘선언
Public ReadOnly Property Height As Integer
‘사용 방법
Dim instance As PenInputPanel
Dim value As Integer

value = instance.Height
public int Height { get; }
public:
property int Height {
    int get ();
}
/** @property */
public int get_Height()
public function get Height () : int

속성 값

형식: System.Int32
클라이언트 좌표의 펜 입력 패널 높이입니다.

의미

120

픽셀 수는 96dpi에서 1.25인치에 해당합니다.

150

픽셀 수는 120dpi에서 1.25인치에 해당합니다.

166

픽셀 수는 133dpi에서 1.25인치에 해당합니다.

설명

펜 입력 패널의 높이는 특정 Tablet PC의 화면 해상도에 따라 달라집니다.

Microsoft® Windows® XP Tablet PC Edition 2005부터는 새 필기에 맞도록 Tablet PC 입력 패널의 크기가 자동으로 확장되므로 입력 패널에 계속해서 필기를 입력할 수 있습니다. Height 및 Width 속성은 입력 패널이 확장될 때 새 크기를 반영하도록 업데이트되지 않습니다. 즉, 이 두 속성은 입력 패널의 원래 크기를 반환합니다. 또한 이 두 속성은 입력 패널 가리키기 대상의 크기를 보고하지 않습니다.

ms571979.alert_security(ko-kr,VS.90).gif보안 정보:

부분 신뢰 환경에서 사용하는 경우 이 속성에 SecurityPermissionFlag.AllFlags 권한 및 PenInputPanel에서 요구하는 권한이 필요합니다. 자세한 내용은 Security and Trust를 참조하십시오.

예제

이 C# 예제에서는 PenInputPanel 개체인 thePenInputPanel을 만들어 InkEdit 컨트롤인 inkEdit1에 연결합니다. 그런 다음 VisibleChanged 이벤트 처리기인 VisibleChanged_Event를 연결합니다. 이벤트 처리기에서 PenInputPanel이 연결된 편집 컨트롤의 내용에 문장을 추가합니다. 이 문장은 Height 속성을 검색한 다음 ToString 메서드를 사용하여 해당 속성을 문자열로 변환함으로써 펜 입력 패널의 높이를 픽셀 단위로 나타냅니다.

[C#]

//...

// Declare the PenInputPanel object
PenInputPanel thePenInputPanel;

public Form1()
{
    // Required for Windows Form Designer support
    InitializeComponent();

    // Create and attach the new PenInputPanel to an InkEdit control.
    thePenInputPanel = new PenInputPanel(inkEdit1);

    // Add a VisibleChanged event handler
    thePenInputPanel.VisibleChanged +=
        new PenInputPanelVisibleChangedEventHandler(VisibleChanged_Event);
}

//...

public void VisibleChanged_Event(object sender,
                                            PenInputPanelVisibleChangedEventArgs e)
{
    // Make sure the object that generated
    // the event is a PenInputPanel object
    if (sender is PenInputPanel)
    {
        PenInputPanel theSenderPanel = (PenInputPanel)sender;

        // When the panel has become visible...
        if (e.NewVisibility)
        {
            // Display the height of the panel in the attached edit control
            theSenderPanel.AttachedEditControl.Text +=
                    "The height of the panel is ";
            theSenderPanel.AttachedEditControl.Text +=
                     theSenderPanel.Height.ToString();
            theSenderPanel.AttachedEditControl.Text += " pixels.\n";
        }
    }
}

이 Microsoft Visual Basic® .NET 예제에서는 PenInputPanel 개체인 thePenInputPanel을 만들어 InkEdit 컨트롤인 InkEdit1에 연결합니다. 그런 다음 VisibleChanged 이벤트 처리기인 VisibleChanged_Event를 연결합니다. 이벤트 처리기에서 PenInputPanel이 연결된 편집 컨트롤의 내용에 문장을 추가합니다. 이 문장은 Height 속성을 검색한 다음 ToString 메서드를 사용하여 해당 속성을 문자열로 변환함으로써 펜 입력 패널의 높이를 픽셀 단위로 나타냅니다.

[Visual Basic]

'...

' Declare the PenInputPanel object
Dim thePenInputPanel As PenInputPanel

Public Sub New()
    MyBase.New()

    ' Required for Windows Form Designer support
    InitializeComponent()

    ' Create and attach the new PenInputPanel to an InkEdit control.
    thePenInputPanel = New PenInputPanel(InkEdit1)

    ' Add a VisibleChanged event handler
    AddHandler thePenInputPanel.VisibleChanged, _
               AddressOf VisibleChanged_Event
End Sub 'New

'...

Public Sub VisibleChanged_Event(sender As Object, e As _
                                PenInputPanelVisibleChangedEventArgs)
    ' Make sure the object that generated
    ' the event is a PenInputPanel object
    If TypeOf sender Is PenInputPanel Then
       Dim theSenderPanel As PenInputPanel = CType(sender, PenInputPanel)

       ' When the panel has become visible...
       If e.NewVisibility Then
          ' Display the height of the panel in the attached edit control
          theSenderPanel.AttachedEditControl.Text += _
                   "The height of the panel is "
          theSenderPanel.AttachedEditControl.Text += _
                     theSenderPanel.Height.ToString()
         theSenderPanel.AttachedEditControl.Text += " pixels." + ControlChars.Lf
       End If
    End If
End Sub 'VisibleChanged_Event

플랫폼

Windows Vista

.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

PenInputPanel 클래스

PenInputPanel 멤버

Microsoft.Ink 네임스페이스

PenInputPanel.Width