다음을 통해 공유


IDWriteLocalizedStrings::GetStringLength 메서드(dwrite.h)

지정된 인덱스가 있는 문자열의 길이(null 종결자를 포함하지 않음)를 가져옵니다.

구문

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

매개 변수

index

형식: UINT32

언어/문자열 쌍의 인덱스(0부터 시작)입니다.

[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 7, Windows Vista SP2 및 Windows Vista용 플랫폼 업데이트 [데스크톱 앱 | UWP 앱]
지원되는 최소 서버 Windows Server 2008 R2, Windows Server 2008 SP2 및 Windows Server 2008용 플랫폼 업데이트 [데스크톱 앱 | UWP 앱]
대상 플랫폼 Windows
헤더 dwrite.h
라이브러리 Dwrite.lib
DLL Dwrite.dll

추가 정보

IDWriteLocalizedStrings