InkCollector.GetGestureStatus メソッド
特定のアプリケーション ジェスチャ内で InkCollector オブジェクトが対象を持つかどうかを示す値を返します。
名前空間 : Microsoft.Ink
アセンブリ : Microsoft.Ink (Microsoft.Ink.dll 内)
構文
'宣言
Public Function GetGestureStatus ( _
gesture As ApplicationGesture _
) As Boolean
'使用
Dim instance As InkCollector
Dim gesture As ApplicationGesture
Dim returnValue As Boolean
returnValue = instance.GetGestureStatus(gesture)
public bool GetGestureStatus(
ApplicationGesture gesture
)
public:
bool GetGestureStatus(
ApplicationGesture gesture
)
public boolean GetGestureStatus(
ApplicationGesture gesture
)
public function GetGestureStatus(
gesture : ApplicationGesture
) : boolean
パラメータ
- gesture
型 : Microsoft.Ink.ApplicationGesture
照会するジェスチャを表す ApplicationGesture 列挙体のメンバ。
戻り値
型 : System.Boolean
InkCollector オブジェクトが特定のアプリケーション ジェスチャ内で対象を持つ場合は true。それ以外の場合は false。
解説
Gesture イベントは、ジェスチャが認識されたときに発生します。
このメソッドは、gesture パラメータが ApplicationGesture に設定されている場合は例外をスローします。
特定のジェスチャに対して InkCollector オブジェクトの対象を設定するには、InkCollector.SetGestureStatus メソッドを呼び出します。
メモ : |
---|
既定では、InkCollector オブジェクトはアプリケーション ジェスチャ内で対象を持ちません。 |
例
この C# の例では、InkCollector オブジェクト theInkCollector が対象を持つアプリケーション ジェスチャすべてを含む ArrayList を作成します。
using Microsoft.Ink;
// . . .
// Return an array of all of the ApplicationGestures that
// have their status set to true on the InkCollector object.
private ApplicationGesture [] GetSetAppGestures(InkCollector theInkCollector)
{
ArrayList result = new ArrayList();
Array gestureArray = System.Enum.GetValues(typeof(ApplicationGesture));
foreach (ApplicationGesture theGesture in gestureArray)
{
// ApplicationGesture.AllGestures is not a meaningful gesture
// to pass to GetGestureStatus()
if (theGesture != ApplicationGesture.AllGestures &&
theInkCollector.GetGestureStatus(theGesture))
{
result.Add(theGesture);
}
}
return (ApplicationGesture[])result.ToArray(typeof(ApplicationGesture));
}
この Microsoft Visual Basic .NET の例では、InkCollector オブジェクト theInkCollector が対象を持つアプリケーション ジェスチャすべてを含む ArrayList を作成します。
Imports Microsoft.Ink
' . . .
' Return an array of all of the ApplicationGestures that
' have their status set to true on the InkCollector object.
Private Function GetSetAppGestures(ByVal theInkCollector As InkCollector) As ApplicationGesture()
Dim result As New ArrayList()
Dim sampleGesture As ApplicationGesture = ApplicationGesture.NoGesture
Dim theGestures As Array = System.Enum.GetValues(sampleGesture.GetType())
Dim theGesture As ApplicationGesture
For Each theGesture In theGestures
' ApplicationGesture.AllGestures is not a meaningful
' gesture to pass to GetGestureStatus()
If (Not theGesture.Equals(ApplicationGesture.AllGestures)) AndAlso _
theInkCollector.GetGestureStatus(theGesture) Then
result.Add(theGesture)
End If
Next
Return CType(result.ToArray(test.GetType()), ApplicationGesture())
End Function
プラットフォーム
Windows Vista
.NET Framework および .NET Compact Framework では、各プラットフォームのすべてのバージョンはサポートしていません。サポートされているバージョンについては、「.NET Framework システム要件」を参照してください。
バージョン情報
.NET Framework
サポート対象 : 3.0