InkOverlaySelectionMovedEventArgs.OldSelectionBoundingRect (Propiedad)
Actualización: noviembre 2007
Obtiene el rectángulo delimitador de la colección Strokes seleccionada tal y como era antes de desencadenarse el evento SelectionMoved.
Espacio de nombres: Microsoft.Ink
Ensamblado: Microsoft.Ink (en Microsoft.Ink.dll)
Sintaxis
'Declaración
Public ReadOnly Property OldSelectionBoundingRect As Rectangle
'Uso
Dim instance As InkOverlaySelectionMovedEventArgs
Dim value As Rectangle
value = instance.OldSelectionBoundingRect
public Rectangle OldSelectionBoundingRect { get; }
public:
property Rectangle OldSelectionBoundingRect {
Rectangle get ();
}
/** @property */
public Rectangle get_OldSelectionBoundingRect()
public function get OldSelectionBoundingRect () : Rectangle
Valor de propiedad
Tipo: System.Drawing.Rectangle
Rectángulo delimitador de la colección Strokes seleccionada tal y como era antes de desencadenarse el evento SelectionMoved.
Comentarios
La propiedad OldSelectionBoundingRect obtiene la posición en la que se encontraba la colección Strokes seleccionada antes de que se desencadenara el evento SelectionMoved.
Ejemplos
En este ejemplo, un controlador de eventos SelectionMoved examina una selección una vez movida. Si la colección Strokes seleccionada se mueve de forma que alguna parte de la selección queda fuera de la sección izquierda o superior de la ventana, la selección se desplaza de nuevo a su posición original.
Private Sub mInkObject_SelectionMoved(ByVal sender As Object, ByVal e As InkOverlaySelectionMovedEventArgs)
' mInkObject can be InkOverlay or InkPicture
Dim newBounds As Rectangle = mInkObject.Selection.GetBoundingBox()
' Check if we have gone off the left or top sides of the window.
If (newBounds.Left < 0 Or newBounds.Top < 0) Then
' Move to back to original spot
mInkObject.Selection.Move(e.OldSelectionBoundingRect.Left - newBounds.Left, _
e.OldSelectionBoundingRect.Top - newBounds.Top)
' Trick to insure that selection handles are updated
mInkObject.Selection = mInkObject.Selection
End If
End Sub
private void mInkObject_SelectionMoved(object sender, InkOverlaySelectionMovedEventArgs e)
{
// mInkObject can be InkOverlay or InkPicture
Rectangle newBounds = mInkObject.Selection.GetBoundingBox();
// Check if we have gone off the left or top sides of the window.
if (newBounds.Left < 0 || newBounds.Top < 0)
{
// Move to back to original spot
mInkObject.Selection.Move(e.OldSelectionBoundingRect.Left - newBounds.Left,
e.OldSelectionBoundingRect.Top - newBounds.Top);
// Trick to insure that selection handles are updated
mInkObject.Selection = mInkObject.Selection;
}
}
Plataformas
Windows Vista
.NET Framework y .NET Compact Framework no admiten todas las versiones de cada plataforma. Para obtener una lista de las versiones compatibles, vea Requisitos de sistema de .NET Framework.
Información de versión
.NET Framework
Compatible con: 3.0
Vea también
Referencia
InkOverlaySelectionMovedEventArgs (Clase)
InkOverlaySelectionMovedEventArgs (Miembros)