Indicates whether to use the current Windows locale (code page) when rendering text files.
Syntax
Visual Basic (Declaration) | |
---|
Public Property UseSystemLocale As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As CodecsTxtLoadOptions
Dim value As Boolean
instance.UseSystemLocale = value
value = instance.UseSystemLocale
|
C# | |
---|
public bool UseSystemLocale {get; set;} |
C++/CLI | |
---|
public:
property bool UseSystemLocale {
bool get();
void set (bool value);
} |
Return Value
true to use the current Windows locale (code page) when rendering text files, otherwise;
false.
Example
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also