MatchesCriteriaBaseCallback 委派
表示用來評估 ContextNodeBase 物件是否符合指定之準則的函式。
命名空間: System.Windows.Ink.AnalysisCore
組件: IACore (在 IACore.dll 中)
語法
'宣告
Public Delegate Function MatchesCriteriaBaseCallback ( _
visitingNode As ContextNodeBase, _
data As Object _
) As Boolean
'用途
Dim instance As New MatchesCriteriaBaseCallback(AddressOf HandlerMethod)
public delegate bool MatchesCriteriaBaseCallback(
ContextNodeBase visitingNode,
Object data
)
public delegate bool MatchesCriteriaBaseCallback(
ContextNodeBase^ visitingNode,
Object^ data
)
/** @delegate */
public delegate boolean MatchesCriteriaBaseCallback(
ContextNodeBase visitingNode,
Object data
)
JScript 不支援委派。
參數
- visitingNode
型別:System.Windows.Ink.AnalysisCore.ContextNodeBase
將根據準則進行檢查的 ContextNodeBase 物件。
- data
型別:System.Object
可用來當做準則的選擇性資料。
傳回值
型別:System.Boolean
布林值 (Boolean),這個值表示 visitingNode 物件是否符合準則。
範例
下列範例會使用整數 yValue,在 InkAnalyzerBase (theInkAnalyzerBase) 中尋找符合 MatchesCriteriaBaseCallback 委派 (Delegate) 函式中指定之準則的 LineIsLowerThanContextNodeBase 物件集合。
Dim lineIsLowerThanCallback As _
New System.Windows.Ink.AnalysisCore.MatchesCriteriaBaseCallback(AddressOf LineIsLowerThan)
Dim nodesBelowYValue As ContextNodeBaseCollection = _
theInkAnalyzerBase.FindNodes(lineIsLowerThanCallback, yValue)
System.Windows.Ink.AnalysisCore.MatchesCriteriaBaseCallback
lineIsLowerThanCallback = new System.Windows.Ink.AnalysisCore.MatchesCriteriaBaseCallback(LineIsLowerThan);
ContextNodeBaseCollection nodesBelowYValue =
theInkAnalyzerBase.FindNodes(lineIsLowerThanCallback, yValue);
如果 ContextNodeBase 為 Line 型別,並且週框方塊底端低於傳入的整數,則 LineIsLowerThan 會傳回 true (請注意,Y 值愈高,其在螢幕上出現的位置就愈低)。因此,nodesBelowYValue 集合包含的所有行中,筆劃都會低於 yValue 值。
Public Function LineIsLowerThan( _
ByVal nodeBase As System.Windows.Ink.AnalysisCore.ContextNodeBase, _
ByVal data As Object) As Boolean
' Return false if not a line
If nodeBase.Type <> System.Windows.Ink.AnalysisCore.ContextNodeTypeBase.Line Then
Return False
End If
' Check if bottom is lower than yValue passed in
Dim yValue As Integer = Fix(data)
Return nodeBase.Location.GetBounds()(3) > yValue
End Function 'LineIsLowerThan
public bool LineIsLowerThan(System.Windows.Ink.AnalysisCore.ContextNodeBase nodeBase, object data)
{
// Return false if not a line
if (!(nodeBase.Type == System.Windows.Ink.AnalysisCore.ContextNodeTypeBase.Line))
return false;
// Check if bottom is lower than yValue passed in
int yValue = (int)data;
return (nodeBase.Location.GetBounds()[3] > yValue);
}
平台
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0