ITextInputPanel::get_InPlaceBoundingRectangle 方法 (peninputpanel.h)
[ITextInputPanel 可用于“要求”部分中指定的操作系统。 它可能在后续版本中变更或不可用。 请改用 IInputPanelConfiguration。
]
获取平板电脑输入面板的边框。
此属性为只读。
语法
HRESULT get_InPlaceBoundingRectangle(
RECT *BoundingRectangle
);
参数
BoundingRectangle
返回值
无
备注
如果“书写板”或“字符板”处于活动状态,则“插入”按钮的高度将包含在就地输入面板的边框中。 边界矩形不包括更正梳的高度。当就地输入面板自动增长时, 将触发 ITextInputPanelEventSink::InPlaceSizeChanging 方法/ITextInputPanelEventSink::InPlaceSizeChanged 方法 事件对,并将此属性的值更新为包含其他写入区域或写入行。
示例
此 C++ 示例实现 EN_SETFOCUS
Edit 控件 IDC_EDIT3
的事件处理程序。 它首先检查是否已创建 ITextInputPanel 对象 g_pTip
。 如果存在,它会报告多个 ITextInputPanel 接口 属性的值,以便使用 TRACE 宏调试输出。
void CCOMTIPDlg::OnEnSetFocusEdit3()
{
if (NULL != g_pTip)
{
CorrectionMode mode;
if (SUCCEEDED(g_pTip->get_CurrentCorrectionMode(&mode)))
{
TRACE("CurrentCorrectionMode: %d\n", mode);
}
InPlaceState state;
if (SUCCEEDED(g_pTip->get_CurrentInPlaceState(&state)))
{
TRACE("CurrentInPlaceState: %d\n", state);
}
PanelInputArea area;
if (SUCCEEDED(g_pTip->get_CurrentInputArea(&area)))
{
TRACE("CurrentInputArea: %d\n", area);
}
InteractionMode iMode;
if (SUCCEEDED(g_pTip->get_CurrentInteractionMode(&iMode)))
{
TRACE("CurrentInteractionMode: %d\n", iMode);
}
RECT rect;
if (SUCCEEDED(g_pTip->get_InPlaceBoundingRectangle(&rect)))
{
TRACE("InPlaceBoundingRectangle.top: %d\n", rect.top);
TRACE("InPlaceBoundingRectangle.left: %d\n", rect.left);
TRACE("InPlaceBoundingRectangle.bottom: %d\n", rect.bottom);
TRACE("InPlaceBoundingRectangle.right: %d\n", rect.right);
}
int nHeight;
if (SUCCEEDED(g_pTip->get_PopDownCorrectionHeight(&nHeight)))
{
TRACE("PopDownCorrectionHeight: %d\n", nHeight);
}
if (SUCCEEDED(g_pTip->get_PopUpCorrectionHeight(&nHeight)))
{
TRACE("PopUpCorrectionHeight: %d\n", nHeight);
}
if (SUCCEEDED(g_pTip->SetInPlacePosition(300, 300, CorrectionPosition_Bottom)))
{
TRACE("Call to SetInPlacePosition() succeeded.\n");
}
else
{
TRACE("Call to SetInPlacePosition() failed.\n");
}
}
else
{
TRACE("ITextInputPanel object is NULL.\n");
}
}
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows XP Tablet PC Edition [仅限桌面应用] |
最低受支持的服务器 | 无受支持的版本 |
目标平台 | Windows |
标头 | peninputpanel.h |
DLL | Tiptsf.dll |