0

レポートをプレビューするときはいつでも、Crystal レポートに透かしのテキストを表示したいと考えています。そのために、新しい段落オブジェクト、新しいフィールド(テキストボックス)オブジェクトを作成し、C#を使用してプログラムからCrystalレポートに挿入し ます。
以下はコードです

CrystalDecisions.ReportAppServer.ClientDoc.ISCDReportClientDocument rptClientDoc1 = cryRpt.ReportClientDocument;

        ISCRParagraphTextElement paragraphTextElement = new ParagraphTextElementClass();
        paragraphTextElement.Text = "TESTING";

        paragraphTextElement.Kind = CrParagraphElementKindEnum.crParagraphElementKindText;

        ParagraphElements paragraphElements = new ParagraphElementsClass();
        paragraphElements.Add(paragraphTextElement);

        Paragraph paragraph = new ParagraphClass();
        paragraph.Alignment = CrAlignmentEnum.crAlignmentHorizontalCenter;
        paragraph.ParagraphElements = paragraphElements;

        Paragraphs paragraphs = new ParagraphsClass();
        paragraphs.Add(paragraph);

        ISCRTextObject textObject = new TextObjectClass();
        textObject.Paragraphs = paragraphs;
        textObject.FontColor.Font.Bold = true;
        textObject.FontColor.Font.Size = 48;
        textObject.FontColor.Font.Italic = true;
        textObject.FontColor.Color = uint.Parse(ColorTranslator.ToOle(Color.Gray).ToString());
        textObject.FontColor.Font.Charset = 30;
        textObject.Height = 8000;
        textObject.Top = this.Height;
        textObject.Left = 5000;
        textObject.Width = 1500;

        textObject.Format.TextRotationAngle = CrTextRotationAngleEnum.crRotationAngleRotate90;

        ReportDefController2 reportDef = rptClientDoc1.ReportDefController;

        ReportSectionController reportSectionController = rptClientDoc1.ReportDefController.ReportSectionController;

        CrystalDecisions.ReportAppServer.ReportDefModel.Section newsec;

        int index = reportDef.ReportDefinition.PageHeaderArea.Sections.Count;
        if (index > 0)
        {               
            newsec = reportDef.ReportDefinition.PageHeaderArea.Sections[index - 1];
        }
        else
        {
            index = 0;
            newsec = reportDef.ReportDefinition.PageHeaderArea.Sections[index];
        }
        reportDef.ReportDefinition.PageHeaderArea.Sections.Insert(index, newsec);

        CrystalDecisions.ReportAppServer.ReportDefModel.Section sectionToAddTo = reportDef.ReportDefinition.PageHeaderArea.Sections[index];

        CrystalDecisions.ReportAppServer.ReportDefModel.SectionFormat newSectionFormat = sectionToAddTo.Format;
        newSectionFormat.EnableKeepTogether = false;
        newSectionFormat.EnableSuppress = false;
        newSectionFormat.EnableUnderlaySection = true;
        reportSectionController.SetProperty(sectionToAddTo, CrReportSectionPropertyEnum.crReportSectionPropertyFormat, newSectionFormat);

        reportDef.ReportObjectController.Add(textObject, sectionToAddTo, 0);


ここでの問題は、PageHeader の新しいセクションは PageHeaderの前のセクションのコピーです。Pag​​eHeader プロパティの新しいセクションを変更すると、PageHeader の前のセクションも変更されます。これを解決する方法を教えてください。

4

1 に答える 1