GrapeCity.ActiveReports.Export.Html.v9 アセンブリ > GrapeCity.ActiveReports.Export.Html.Section 名前空間 > HtmlExport クラス : CharacterSet プロパティ |
'宣言 Public Property CharacterSet As HtmlCharacterSet
public HtmlCharacterSet CharacterSet {get; set;}
デフォルトの文字セットはUTF8です。このプロパティを設定すると、出力されるHTMLページのヘッダのメタタグが、適切なIANAの文字セット値に変更されます。
次に例を示します。: <META content="text/html;charset=ISO-8859-1" http-equiv=ContentType>
さらに、ページ内部のテキスト部分は、フォント名のみならず、指定の文字セットのエンコーディングルールに従って、エンコードされます。ヘッダなしで(IncludeHtmlHeader=false)ドキュメントをエクスポートするには、ブラウザがテキストのエンコーディング方法を確認できるように、適切なメタタグを挿入する必要があります。
private void btnExport_Click(object sender, System.EventArgs e) { SectionReport1 rpt = new SectionReport(); GrapeCity.ActiveReports.Export.Html.Section.HtmlExport h = new GrapeCity.ActiveReports.Export.Html.Section.HtmlExport(); h.CharacterSet = GrapeCity.ActiveReports.Export.Html.Section.HtmlCharacterSet.Big5; rpt.Run(); this.arv.Document = rpt.Document; h.Export(rpt.Document, Application.StartupPath + "\\h.html"); }
Private Sub Viewer1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Viewer1.Load Dim rpt As New SectionReport1 rpt.Run() Me.Viewer1.Document = rpt.Document Dim h As New GrapeCity.ActiveReports.Export.Html.Section.HtmlExport h.CharacterSet = GrapeCity.ActiveReports.Export.Html.Section.HtmlCharacterSet.Big5 h.Export(rpt.Document, Application.StartupPath + "/export.html") End Sub