Windward Engine API Reference
ReportCharset Property
See Also  Send comments on this topic.
net.windward.api.csharp Namespace > Report Class : ReportCharset Property




Glossary Item Box

Html and txt files are generated using a charset (the rest use unicode). Normally html files are generated using utf-8 (unicode) except for HTML_1 which uses the native charset. Txt files are normally generated using the native charset. The native charset is not the .NET native charset, it is the default charset set in the template document. This call allows you to force to charset the report is written in. The passed in value is the Windows codepage (Western Europe is 1252). This has nothing to do with reading in the template, it only affects the charset the output report is written in. The special enums CHARSET_* allow you to set this to values other than a specific charset.

Syntax

Visual Basic (Declaration) 
Public Property ReportCharset As Report.CHARSET
Visual Basic (Usage)Copy Code
Dim instance As Report
Dim value As Report.CHARSET
 
instance.ReportCharset = value
 
value = instance.ReportCharset
C# 
public Report.CHARSET ReportCharset {get; set;}
Managed Extensions for C++ 
public: __property Report.CHARSET get_ReportCharset();
public: __property void set_ReportCharset( 
   Report.CHARSET value
);
C++/CLI 
public:
property Report.CHARSET ReportCharset {
   Report.CHARSET get();
   void set (    Report.CHARSET value);
}

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP, Windows Vista, Windows Server 2003 family

See Also

© 2019 All Rights Reserved.