ITextInputPanel::p ut_ExpandPostInsertionCorrection メソッド (peninputpanel.h)
[ITextInputPanel は、[要件] セクションで指定されたオペレーティング システムで使用できます。 今後のバージョンでは変更されるか、利用できなくなる場合もあります。 代わりに、 IInputPanelConfiguration を使用します。
]
タブレット PC 入力パネルの補正コームが自動的に展開されるかどうかを示す値を取得または設定します。
このプロパティは読み取り/書き込み可能です。
構文
HRESULT put_ExpandPostInsertionCorrection(
BOOL Expand
);
パラメーター
Expand
戻り値
なし
解説
メモ Windows 7 では、 ITextInputPanel インターフェイスの動作が変更されました。 Expand パラメーターは、返されるときに常に "展開されていません" に設定されます。 このプロパティを設定しても、操作は実行されなくなりました。
例
次の C++ の例では、ITextInputPanel オブジェクト を作成し、g_pTip
ITextInputPanel::AttachedEditWindow プロパティを設定して InkEditIDC_EDIT3
コントロールのウィンドウ ハンドルにアタッチします。 また、 を設定し、 ITextInputPanel::ExpandPostInsertionCorrection プロパティを取得します。
if (SUCCEEDED(CoInitialize(NULL)))
{
if (SUCCEEDED(CoCreateInstance(CLSID_TextInputPanel, NULL, CLSCTX_INPROC, IID_ITextInputPanel, (VOID**)&g_pTip)))
{
if (SUCCEEDED(g_pTip->put_AttachedEditWindow(GetDlgItem(IDC_EDIT3)->m_hWnd)))
{
g_pTip->put_DefaultInPlaceState(InPlaceState_Expanded);
InPlaceState ips;
g_pTip->get_DefaultInPlaceState(&ips);
TRACE("DefaultInplaceState: %d\n", ips);
g_pTip->put_DefaultInputArea(PanelInputArea_CharacterPad);
PanelInputArea pia;
g_pTip->get_DefaultInputArea(&pia);
TRACE("DefaultInputArea: %d\n", pia);
g_pTip->put_ExpandPostInsertionCorrection(FALSE);
BOOL epic;
g_pTip->get_ExpandPostInsertionCorrection(&epic);
TRACE("ExpandPostInsertionCorrection: %d\n", epic);
g_pTip->put_InPlaceVisibleOnFocus(TRUE);
BOOL ipvof;
g_pTip->get_InPlaceVisibleOnFocus(&ipvof);
TRACE("InPlaceVisibleOnFocus: %d\n", ipvof);
g_pTip->put_PreferredInPlaceDirection(InPlaceDirection_Top);
InPlaceDirection direction;
g_pTip->get_PreferredInPlaceDirection(&direction);
TRACE("PreferredInPlaceDirection: %d\n", direction);
}
}
else
{
TRACE("Failed to create ITextInputPanel object.\n");
}
}
要件
要件 | 値 |
---|---|
サポートされている最小のクライアント | Windows XP Tablet PC Edition [デスクトップ アプリのみ] |
サポートされている最小のサーバー | サポートなし |
対象プラットフォーム | Windows |
ヘッダー | peninputpanel.h |
[DLL] | Tiptsf.dll |