共用方式為


IDWriteLocalizedStrings::GetStringLength 方法 (dwrite.h)

取得字元長度, (不包含具有指定索引之字串的 null 結束字元) 。

語法

HRESULT GetStringLength(
        UINT32 index,
  [out] UINT32 *length
);

參數

index

類型: UINT32

語言/字串組以零起始的索引。

[out] length

類型: UINT32*

字串字元的長度,不包括來自語言/字串組的 Null 結束字元。

傳回值

類型: HRESULT

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

備註

使用 GetStringLength 在呼叫 IDWriteLocalizedStrings::GetString 方法之前取得字串長度,如下列程式碼所示。

UINT32 length = 0;

// Get the string length.
if (SUCCEEDED(hr))
{
    hr = pFamilyNames->GetStringLength(index, &length);
}

// Allocate a string big enough to hold the name.
wchar_t* name = new (std::nothrow) wchar_t[length+1];
if (name == NULL)
{
    hr = E_OUTOFMEMORY;
}

// Get the family name.
if (SUCCEEDED(hr))
{
    hr = pFamilyNames->GetString(index, name, length+1);
}

需求

   
最低支援的用戶端 適用于 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

另請參閱

IDWriteLocalizedStrings