共用方式為


IDWriteTextLayout::SetFontStyle 方法 (dwrite.h)

設定 DWRITE_TEXT_RANGE 結構所指定之文字範圍內的文字字型樣式。

語法

HRESULT SetFontStyle(
  DWRITE_FONT_STYLE fontStyle,
  DWRITE_TEXT_RANGE textRange
);

參數

fontStyle

類型: DWRITE_FONT_STYLE

要針對 textRange所指定範圍內的文字設定的字型樣式。

textRange

類型: DWRITE_TEXT_RANGE

套用這項變更的文字範圍。

傳回值

類型: HRESULT

如果此方法成功,則會傳回 S_OK。 否則,它會傳回 HRESULT 錯誤碼。

備註

字型樣式可以設定為 Normal、斜體或斜體。 下圖顯示 Pala font 字型的三種樣式。 如需詳細資訊,請參閱 DWRITE_FONT_STYLE

Pala font 字型的一般、斜體和斜體字型樣式圖例

範例

下列程式碼說明如何將字型樣式設定為斜體。


// 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 Vista 的 Windows 7、Windows Vista SP2 和平臺更新 [傳統型應用程式 |UWP 應用程式]
最低支援的伺服器 Windows Server 2008 R2、Windows Server 2008 SP2 和 Platform Update for Windows Server 2008 [傳統型應用程式 |UWP 應用程式]
目標平台 Windows
標頭 dwrite.h
程式庫 Dwrite.lib
Dll Dwrite.dll

另請參閱

IDWriteTextLayout