Поделиться через


InPlaceDirection - перечисление

Обновлен: Ноябрь 2007

Specifies the preferred direction of the in-place Input Panel relative to the text entry field.

Пространство имен:  Microsoft.Ink.TextInput
Сборка:  Microsoft.Ink (в Microsoft.Ink.dll)

Синтаксис

'Декларация
Public Enumeration InPlaceDirection
'Применение
Dim instance As InPlaceDirection
public enum InPlaceDirection
public enum class InPlaceDirection
public enum InPlaceDirection
public enum InPlaceDirection

Члены

Имя члена Описание
Auto Restore the system default.
Bottom Preferred direction is above the text entry field.
Top Preferred direction is below the text entry field.

Заметки

An application can specify whether the in-place Input Panel defaults appear above or below a text entry field by setting the PreferredInPlaceDirection to Bottom or Top. PreferredInPlaceDirection is a preference because the in-place Input Panel overrides the preference set by the application when necessary to keep Input Panel on the screen. The system default is to position the in-place Input Panel below a text field when possible; otherwise it is positioned above. Setting the PreferredInPlaceDirection to Auto restores the system default.

Примеры

The following example demonstrates the use of Top. The tip object is an instance of TextInputPanel. An editable field where the focus is placed is represented by TextBox control, textBox1.

textBox1.Focus()
tip.PreferredInPlaceDirection = InPlaceDirection.Top
textBox1.Focus();
tip.PreferredInPlaceDirection = InPlaceDirection.Top;

Платформы

Windows Vista, Windows XP с пакетом обновления 2 (SP2), Windows Server 2003

Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.

Сведения о версии

.NET Framework

Поддерживается в версии: 3.0

См. также

Ссылки

Microsoft.Ink.TextInput - пространство имен

PreferredInPlaceDirection