다음을 통해 공유


PenInputPanel.AttachedEditControl 속성

업데이트: 2007년 11월

사용되지 않습니다. PenInputPanel 개체가 연결되는 컨트롤을 가져오거나 설정합니다. PenInputPanel은 Microsoft.Ink.TextInput으로 대체되었습니다.

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

구문

‘선언
Public Property AttachedEditControl As Control
‘사용 방법
Dim instance As PenInputPanel
Dim value As Control

value = instance.AttachedEditControl

instance.AttachedEditControl = value
public Control AttachedEditControl { get; set; }
public:
property Control^ AttachedEditControl {
    Control^ get ();
    void set (Control^ value);
}
/** @property */
public Control get_AttachedEditControl()
/** @property */
public  void set_AttachedEditControl(Control value)
public function get AttachedEditControl () : Control
public function set AttachedEditControl (value : Control)

속성 값

형식: System.Windows.Forms.Control
PenInputPanel 개체가 연결된 컨트롤입니다.

설명

AttachedEditControl 및 AttachedEditWindow 속성은 서로 독립적인 속성이므로 한 속성을 설정한다고 다른 속성이 업데이트되는 것은 아닙니다. PenInputPanel 개체를 컨트롤이나 창에 연결하는 데 원래 사용했던 속성을 사용하십시오.

예제

이 C# 예제에서는 PenInputPanel 개체인 thePenInputPanel을 만든 다음 AttachedEditControl 속성을 설정하여 새로 만든 개체를 InkEdit 컨트롤인 theInkEdit에 연결합니다.

[C#]

// Declare and create a PenInputPanel
PenInputPanel thePenInputPanel = new PenInputPanel();

// Attach the PenInputPanel to an InkEdit control
thePenInputPanel.AttachedEditControl = theInkEdit;

이 Microsoft® Visual Basic® .NET 예제에서는 PenInputPanel 개체인 thePenInputPanel을 만든 다음 AttachedEditControl 속성을 설정하여 새로 만든 개체를 InkEdit 컨트롤인 theInkEdit에 연결합니다.

[Visual Basic]

' Declare and create a PenInputPanel
Dim thePenInputPanel As New PenInputPanel()

' Attach the PenInputPanel to an InkEdit control
thePenInputPanel.AttachedEditControl = theInkEdit

플랫폼

Windows Vista

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

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

PenInputPanel 클래스

PenInputPanel 멤버

Microsoft.Ink 네임스페이스

PenInputPanel.AttachedEditControl