InkOverlaySelectionResizingEventArgs.NewPixelRect (Propiedad)
Actualización: noviembre 2007
Obtiene el rectángulo delimitador de la selección detrás del evento SelectionResizing, como una estructura Rectangle.
Espacio de nombres: Microsoft.Ink
Ensamblado: Microsoft.Ink (en Microsoft.Ink.dll)
Sintaxis
'Declaración
Public ReadOnly Property NewPixelRect As Rectangle
'Uso
Dim instance As InkOverlaySelectionResizingEventArgs
Dim value As Rectangle
value = instance.NewPixelRect
public Rectangle NewPixelRect { get; }
public:
property Rectangle NewPixelRect {
Rectangle get ();
}
/** @property */
public Rectangle get_NewPixelRect()
public function get NewPixelRect () : Rectangle
Valor de propiedad
Tipo: System.Drawing.Rectangle
El tamaño de la selección detrás del evento SelectionResizing.
Comentarios
La propiedad NewPixelRect proporciona información concreta sobre el evento InkOverlaySelectionResizingEventArgs.
Nota
Esta estructura Rectangle se especifica en coordenadas de ventana cliente, que permiten escenarios como mantener la relación de aspecto al cambiar el tamaño.
Ejemplos
En este ejemplo, un controlador de eventos SelectionResizing examina una selección antes de cambiar su tamaño. Si se va a cambiar el tamaño de la selección y una parte va a quedar fuera de los límites de la ventana, el controlador de eventos establece la selección en rojo cambiando la propiedad Color de cada objeto Stroke seleccionado.
Private Sub mInkObject_SelectionResizing(ByVal sender As Object, ByVal e As InkOverlaySelectionResizingEventArgs)
If e.NewPixelRect.Left < 0 Or e.NewPixelRect.Top < 0 Or _
e.NewPixelRect.Right > mInkObject.AttachedControl.ClientRectangle.Width Or _
e.NewPixelRect.Bottom > mInkObject.AttachedControl.ClientRectangle.Height Then
For Each stroke As Stroke In mInkObject.Selection
' change the stroke color
stroke.DrawingAttributes.Color = Color.Red
Next
End If
End Sub
private void mInkObject_SelectionResizing(object sender, InkOverlaySelectionResizingEventArgs e)
{
if (e.NewPixelRect.Left < 0 || e.NewPixelRect.Top < 0 ||
e.NewPixelRect.Right > mInkObject.AttachedControl.ClientRectangle.Width ||
e.NewPixelRect.Bottom > mInkObject.AttachedControl.ClientRectangle.Height)
{
foreach (Stroke stroke in mInkObject.Selection)
{
// change the stroke color
stroke.DrawingAttributes.Color = Color.Red;
}
}
}
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
InkOverlaySelectionResizingEventArgs (Clase)
InkOverlaySelectionResizingEventArgs (Miembros)