Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "GetStringTypeEx" in [All]

kernel32

.
Summary
The GetStringTypeEx API returns character information for the characters in the specified string pointer. Three types of character information can be retrieved, depending on the dwInfoType parameter.
.

static extern bool GetStringTypeEx(uint Locale, uint dwInfoType,

.

Private Declare Unicode Function GetStringTypeEx Lib "kernel32" Alias "GetStringTypeExW" ( _

.

Public Function GetStringTypeEx(ByVal str As String, ByVal cti As CharTypeInfo) As Int16()

.

     ' No need to specify the Locale, the Unicode (W) version of GetStringTypeEx ignores it anyway

.

     APIRetVal = GetStringTypeEx(0, cti, str, Len(str), CharTypeInfoArray(0))

.

             Throw New ApplicationException("GetStringTypeExError")

.
Documentation
[GetStringTypeEx] on MSDN
.
Summary
The GetStringTypeEx API returns character information for the characters in the specified string pointer. Three types of character information can be retrieved, depending on the dwInfoType parameter.
.

static extern bool GetStringTypeEx(uint Locale, uint dwInfoType,

.

Private Declare Unicode Function GetStringTypeEx Lib "kernel32" Alias "GetStringTypeExW" ( _

.

Public Function GetStringTypeEx(ByVal str As String, ByVal cti As CharTypeInfo) As Int16()

.

     ' No need to specify the Locale, the Unicode (W) version of GetStringTypeEx ignores it anyway

.

     APIRetVal = GetStringTypeEx(0, cti, str, Len(str), CharTypeInfoArray(0))

.

             Throw New ApplicationException("GetStringTypeExError")

.
Documentation
[GetStringTypeEx] on MSDN

 
Access PInvoke.net directly from VS: