Share via


PenInputPanelMovingEventArgs.Left Property

Gets or sets the new horizontal, or x-axis, position of the left edge of the PenInputPanel object, in screen coordinates.

Namespace: Microsoft.Ink
Assembly: Microsoft.Ink (in microsoft.ink.dll)

Syntax

'Declaration
Public Property Left As Integer
'Usage
Dim instance As PenInputPanelMovingEventArgs
Dim value As Integer

value = instance.Left

instance.Left = value
public int Left { get; set; }
public:
property int Left {
    int get ();
    void set (int value);
}
/** @property */
public int get_Left ()

/** @property */
public void set_Left (int value)
public function get Left () : int

public function set Left (value : int)
Not applicable.

Property Value

The new horizontal, or x-axis, position of the left edge of the PenInputPanel object, in screen coordinates.

Remarks

To explicitly override the automatic positioning behavior of the PenInputPanel object, use the Left and Top properties of the object to determine the current position of the pen input panel. If the pen input panel is located on a section of the screen that should be visible, use the MoveTo method to relocate the pen input panel.

You can also override the automatic positioning behavior of the PenInputPanel object by listening for the Left and Top properties of the PenInputPanelMovingEventArgs object during a PanelMoving event. If the pen input panel is located on a section of the screen that should be visible, use the MoveTo method to relocate the pen input panel.

Platforms

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

PenInputPanelMovingEventArgs Class
PenInputPanelMovingEventArgs Members
Microsoft.Ink Namespace
PenInputPanel.PanelMoving