Kernel32IsValidCodePage Method
Determines if a specified code page is valid.
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Kernel32.dll", ExactSpelling = true)]
public static bool IsValidCodePage(
uint codePage
)
<DllImportAttribute("Kernel32.dll", ExactSpelling := true>]
Public Shared Function IsValidCodePage (
codePage As UInteger
) As Boolean
Dim codePage As UInteger
Dim returnValue As Boolean
returnValue = Kernel32.IsValidCodePage(codePage)
public:
[DllImportAttribute(L"Kernel32.dll", ExactSpelling = true)]
static bool IsValidCodePage(
unsigned int codePage
)
[<DllImportAttribute("Kernel32.dll", ExactSpelling = true)>]
static member IsValidCodePage :
codePage : uint32 -> bool
No code example is currently available or this language may not be supported.
- codePage UInt32
-
Code page identifier for the code page to check.
Boolean
Returns
value if the code page is valid, or
if the code page is invalid.