次の方法で共有


IRealTimeStylus::ClearStylusQueues メソッド (rtscom.h)

データの RealTimeStylus クラスの入力キューと出力キューをクリアします。

構文

HRESULT ClearStylusQueues();

戻り値

戻り値の詳細については、「 RealTimeStylus クラスとインターフェイス」を参照してください。

注釈

ClearStylusQueues メソッドを使用すると、RealTimeStylus クラス キューをすばやくクリアできます。 このメソッドは、すべてのデータのキューをクリアします。

次の C++ コード スニペットの例は、 IRealTimeStylus::ClearStylusQueues メソッドを呼び出すボタン クリック イベント ハンドラーを示しています。 また、 DynamicRenderer オブジェクトがインクを描画しているウィンドウも再描画されます。

void CCOMRTSDlg::OnBnClickedButtonClearTestArea()
{
	// Clear the stylus queues
	if (!SUCCEEDED(g_pRealTimeStylus->ClearStylusQueues()))
	{
		TRACE("Error clearing stylus queues.");
	}

	// Clear the status text
	m_staticGestureStatus.SetWindowTextW(L"");

	// Redraw the window to clear the ink
	this->RedrawWindow();
}

要件

要件
サポートされている最小のクライアント Windows XP Tablet PC Edition [デスクトップ アプリのみ]
サポートされている最小のサーバー サポートなし
対象プラットフォーム Windows
ヘッダー rtscom.h
[DLL] RTSCom.dll

こちらもご覧ください

IRealTimeStylus

InkPicture コントロール リファレンス

RealTimeStylus クラス