Discuss this help topic in SecureBlackbox Forum

SetDefaultCharset

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  


Use this routine to specify the character set which will be used by default.
To use internal SecureBlackbox unicode conversion routines, SBUnicode unit must be used. In VCL, SBUnicode is initialized automatically, while in .NET the SBUnicode.Initialize method should be called.

Declaration

[C#]
    void SetDefaultCharset(string Charset);

[VB.NET]
    Sub SetDefaultCharset(ByVal Charset As String)

[Pascal]
    procedure SetDefaultCharset(const Charset : string);

[C++]
    void SetDefaultCharset(const std::string & Charset);

Parameters

  • Charset - charset to be set as default

Description

Declared in

.NET:
  • Namespace: SBStrUtils
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBStrUtils
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbstrutils.h

See also:     UTF8ToStr    

Discuss this help topic in SecureBlackbox Forum