Condividi tramite


Evento InkOverlay.SelectionResizing

Aggiornamento: novembre 2007

Si verifica quando la dimensione della selezione corrente sta per essere modificata, ad esempio tramite modifiche all'interfaccia utente, procedure di taglia e incolla o la proprietà Selection.

Spazio dei nomi:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Sintassi

'Dichiarazione
Public Event SelectionResizing As InkOverlaySelectionResizingEventHandler
'Utilizzo
Dim instance As InkOverlay
Dim handler As InkOverlaySelectionResizingEventHandler

AddHandler instance.SelectionResizing, handler
public event InkOverlaySelectionResizingEventHandler SelectionResizing
public:
 event InkOverlaySelectionResizingEventHandler^ SelectionResizing {
    void add (InkOverlaySelectionResizingEventHandler^ value);
    void remove (InkOverlaySelectionResizingEventHandler^ value);
}
/** @event */
public void add_SelectionResizing (InkOverlaySelectionResizingEventHandler value)
/** @event */
public void remove_SelectionResizing (InkOverlaySelectionResizingEventHandler value)
JScript non supporta gli eventi.

Note

Il gestore eventi riceve un argomento di tipo InkOverlaySelectionResizingEventArgs contenente i dati relativi a questo evento.

Quando si crea un delegato InkOverlaySelectionResizingEventHandler, viene identificato il metodo che gestisce l'evento. Per associare l'evento al gestore in uso, aggiungere all'evento un'istanza del delegato. Il gestore eventi viene chiamato ogni volta che si verifica l'evento, a meno che non si rimuova il delegato. Per motivi di prestazioni, l'interesse dell'evento predefinito è disattivato, ma viene attivato automaticamente se si aggiunge un gestore eventi.

Esempi

In questo esempio, un gestore eventi SelectionResizing esamina una selezione prima che sia stata ridimensionata. Se la selezione viene ridimensionata in modo che una parte di essa si trovi all'esterno dei limiti della finestra, il gestore eventi visualizza in rosso la selezione modificando la proprietà Color di ogni oggetto Stroke selezionato.

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;
        }
    }

}

Piattaforme

Windows Vista

.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.

Informazioni sulla versione

.NET Framework

Supportato in: 3.0

Vedere anche

Riferimenti

InkOverlay Classe

Membri InkOverlay

Spazio dei nomi Microsoft.Ink

InkOverlay.SelectionResized

InkOverlay.Selection

InkOverlaySelectionResizingEventArgs