idWriteTextLayout::SetFontStyle 方法 (dwrite.h)
设置 由 DWRITE_TEXT_RANGE 结构指定的文本范围内的文本的字体样式。
语法
HRESULT SetFontStyle(
DWRITE_FONT_STYLE fontStyle,
DWRITE_TEXT_RANGE textRange
);
参数
fontStyle
要为 textRange 指定范围内的文本设置的字体样式。
textRange
应用此更改的文本范围。
返回值
类型: HRESULT
如果该方法成功,则返回 S_OK。 否则,将返回 HRESULT 错误代码。
备注
字体样式可以设置为 Normal、Italic 或 Oblique。 下图显示了 Palatino 字体的三种样式。 有关详细信息,请参阅 DWRITE_FONT_STYLE。
示例
以下代码演示如何将字体样式设置为斜体。
// Set the font style to italic for the entire string.
DWRITE_TEXT_RANGE textRange = {0, cTextLength_};
if (SUCCEEDED(hr))
{
hr = pTextLayout_->SetFontStyle(DWRITE_FONT_STYLE_ITALIC, textRange);
}
要求
最低受支持的客户端 | Windows 7、带 SP2 的 Windows Vista 和适用于 Windows Vista 的平台更新 [桌面应用 |UWP 应用] |
最低受支持的服务器 | Windows Server 2008 R2、Windows Server 2008 SP2 和适用于 Windows Server 2008 的平台更新 [桌面应用 |UWP 应用] |
目标平台 | Windows |
标头 | dwrite.h |
Library | Dwrite.lib |
DLL | Dwrite.dll |