Condividi tramite


Delegato MatchesCriteriaCallback

Aggiornamento: novembre 2007

Rappresenta una funzione utilizzata per valutare se un oggetto ContextNode soddisfa o meno un criterio specificato.

Spazio dei nomi:  System.Windows.Ink
Assembly:  IAWinFX (in IAWinFX.dll)

Sintassi

'Dichiarazione
Public Delegate Function MatchesCriteriaCallback ( _
    visitingNode As ContextNode, _
    data As Object _
) As Boolean
'Utilizzo
Dim instance As New MatchesCriteriaCallback(AddressOf HandlerMethod)
public delegate bool MatchesCriteriaCallback(
    ContextNode visitingNode,
    Object data
)
public delegate bool MatchesCriteriaCallback(
    ContextNode^ visitingNode, 
    Object^ data
)
/** @delegate */
public delegate boolean MatchesCriteriaCallback(
    ContextNode visitingNode,
    Object data
)
JScript non supporta i delegati.

Parametri

  • data
    Tipo: System.Object
    Dati facoltativi che possono essere utilizzati per i criteri.

Valore restituito

Tipo: System.Boolean
true se l'oggetto visitingNode corrisponde ai criteri; in caso contrario, false.

Esempi

Nell'esempio seguente viene individuato l'insieme di oggetti ContextNode in un oggetto InkAnalyzer, theInkAnalyzer, che soddisfa i criteri specificati nella funzione di delegato MatchesCriteriaCallBack, LineIsLowerThan, tramite un valore integer, yValue.

Dim lineIsLowerThanCallback As New MatchesCriteriaCallback(AddressOf LineIsLowerThan)
Dim nodesBelowYValue As ContextNodeCollection = theInkAnalyzer.FindNodes(lineIsLowerThanCallback, yValue)
MatchesCriteriaCallback
    lineIsLowerThanCallback = new MatchesCriteriaCallback(LineIsLowerThan);
ContextNodeCollection nodesBelowYValue =
    theInkAnalyzer.FindNodes(lineIsLowerThanCallback, yValue);

LineIsLowerThan restituisce un valore true se ContextNode è un oggetto LineNode e se il limite inferiore del riquadro è più basso del valore integer passato. Di conseguenza, l'insieme nodesBelowYValue contiene tutte le righe con tratti al di sotto del valore yValue. È opportuno ricordare che i valori della coordinata y più elevati corrispondono a valori più bassi sullo schermo.

Public Function LineIsLowerThan(ByVal node As ContextNode, ByVal data As Object) As Boolean 
    ' Return false if not a line
    If Not TypeOf node Is LineNode Then
        Return False
    End If 
    ' Check if bottom is lower than yValue passed in
    Dim yValue As Double = System.Convert.ToDouble(data)
    Return node.Location.GetBounds().Bottom > yValue

End Function 'LineIsLowerThan
public bool LineIsLowerThan(ContextNode node, object data)
{
    // Return false if not a line
    if (!(node is LineNode))
        return false;

    // Check if bottom is lower than yValue passed in
    double yValue = (double)data;
    return (node.Location.GetBounds().Bottom > yValue);
}

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

Spazio dei nomi System.Windows.Ink

InkAnalyzer.FindNodes