Beispiel #1
0
        public void DomText_CharacterBold()
        {
            var m = new VisioAutomation.Models.Text.TextElement("{Bold}");

            m.CharacterFormatting.Style = (int)VA.Models.Text.CharStyle.Bold;
            var page1 = this.GetNewPage(new VisioAutomation.Drawing.Size(5, 5));
            var s0    = page1.DrawRectangle(0, 0, 4, 4);

            m.SetText(s0);

            var textfmt = VisioAutomation.Text.TextFormat.GetFormat(s0);
            var charfmt = textfmt.CharacterFormats;

            Assert.AreEqual(1, charfmt.Count);
            Assert.AreEqual(((int)VA.Models.Text.CharStyle.Bold).ToString(), charfmt[0].Style.Result);

            page1.Delete(0);
        }
        public static void TextMarkup13()
        {
            var page     = SampleEnvironment.Application.ActiveDocument.Pages.Add();
            var segoe_ui = page.Document.Fonts["Segoe UI"];

            // Create the Shapes that will hold the text
            var s1 = page.DrawRectangle(0, 0, 8.5, 11);
            var e1 = new VisioAutomation.Models.Text.TextElement();

            e1.AddText("When, from behind that craggy steep\n");
            e1.AddText("till then the horizon’s bound\n");
            var e2 = e1.AddElementEx("a huge peak, black and huge\n", null, null, null, AlignmentHorizontal.Left, VA.Models.Text.CharStyle.Italic);
            var e3 = e1.AddElementEx("As if with voluntary power instinct\n", segoe_ui.ID, null, null, AlignmentHorizontal.Center, VA.Models.Text.CharStyle.Bold);
            var e4 = e1.AddElementEx("Upreared its head.\n", null, null, null, AlignmentHorizontal.Right, VA.Models.Text.CharStyle.Italic);

            e1.AddText("-William Wordsworth, the Prelude");
            e1.SetText(s1);
        }
Beispiel #3
0
        public void DomText_ParagraphRight()
        {
            var m = new VisioAutomation.Models.Text.TextElement("{RightHAlign}");

            m.ParagraphFormatting.HorizontalAlign = (int)AlignmentHorizontal.Right;
            var page1 = this.GetNewPage(new VisioAutomation.Drawing.Size(5, 5));
            var s0    = page1.DrawRectangle(0, 0, 4, 4);

            m.SetText(s0);

            var textfmt = VisioAutomation.Text.TextFormat.GetFormat(s0);
            var parafmt = textfmt.ParagraphFormats;

            Assert.AreEqual(1, parafmt.Count);

            Assert.AreEqual(((int)AlignmentHorizontal.Right).ToString(), parafmt[0].HorizontalAlign.Result);

            page1.Delete(0);
        }
        public static void TextMarkup12()
        {
            var page = SampleEnvironment.Application.ActiveDocument.Pages.Add();

            // Create the Shapes that will hold the text
            var s1  = page.DrawRectangle(0, 0, 8.5, 11);
            var tnr = page.Document.Fonts["Times New Roman"];

            var e1        = new VisioAutomation.Models.Text.TextElement();
            var color_red = new ColorRGB(0xff0000);

            e1.CharacterFormatting.Color = color_red.ToFormula();
            e1.CharacterFormatting.Font  = tnr.ID;
            e1.CharacterFormatting.Font  = "20pt";
            e1.AddText("Hello ");

            var e2 = e1.AddElementEx("World", null, null, null, null, VA.Models.Text.CharStyle.Italic);

            e1.SetText(s1);
        }
Beispiel #5
0
        public void DomText_CharacterFont()
        {
            var page1 = this.GetNewPage(new VisioAutomation.Drawing.Size(5, 5));

            var impact = page1.Document.Fonts["Arial"];
            var m      = new VisioAutomation.Models.Text.TextElement("Normal Text in Impact Font");

            m.CharacterFormatting.Font = impact.ID;
            var s0 = page1.DrawRectangle(0, 0, 4, 4);

            m.SetText(s0);

            var textfmt = VisioAutomation.Text.TextFormat.GetFormat(s0);
            var charfmt = textfmt.CharacterFormats;

            Assert.AreEqual(1, charfmt.Count);
            Assert.AreEqual("0", charfmt[0].Style.Result);
            Assert.AreEqual(impact.ID.ToString(), charfmt[0].Font.Result);

            page1.Delete(0);
        }
        public static void TextMarkup5()
        {
            var page = SampleEnvironment.Application.ActiveDocument.Pages.Add();

            // Create the Shapes that will hold the text
            var s1 = page.DrawRectangle(0, 0, 8.5, 11);

            var e1 = new VisioAutomation.Models.Text.TextElement();

            e1.ParagraphFormatting.HorizontalAlign = 0;
            var e2 = e1.AddElement("Hello Worldline1\nline2\nline3\n");

            e2.ParagraphFormatting.IndentFirst = "0.5pt";
            e2.ParagraphFormatting.IndentLeft  = "0.25pt";
            var e3 = e1.AddElement("Goodbye\nline1\nline2\nline3");

            e3.ParagraphFormatting.IndentFirst = "1.0pt";
            e3.ParagraphFormatting.IndentLeft  = "0.75pt";

            e1.SetText(s1);
        }
Beispiel #7
0
        public void DomText_CharacterComplex()
        {
            var page1 = this.GetNewPage(new VisioAutomation.Drawing.Size(5, 5));
            var doc   = page1.Document;
            var fonts = doc.Fonts;

            var segoeui    = fonts["Segoe UI"];
            var impact     = fonts["Arial"];
            var couriernew = fonts["Courier New"];
            var georgia    = fonts["Georgia"];

            var t1 = new VisioAutomation.Models.Text.TextElement("{Normal}");

            t1.CharacterFormatting.Font = segoeui.ID;

            var t2 = t1.AddElement("{Italic}");

            t2.CharacterFormatting.Style = (int)VA.Models.Text.CharStyle.Italic;
            t2.CharacterFormatting.Font  = impact.ID;

            var t3 = t2.AddElement("{Bold}");

            t3.CharacterFormatting.Style = (int)VA.Models.Text.CharStyle.Bold;
            t3.CharacterFormatting.Font  = couriernew.ID;

            var t4 = t2.AddElement("{Bold Italic}");

            t4.CharacterFormatting.Style = (int)(VA.Models.Text.CharStyle.Bold | VA.Models.Text.CharStyle.Italic);
            t4.CharacterFormatting.Font  = georgia.ID;

            var s0 = page1.DrawRectangle(0, 0, 4, 4);

            t1.SetText(s0);

            var textfmt = VisioAutomation.Text.TextFormat.GetFormat(s0);
            var charfmt = textfmt.CharacterFormats;

            // check the number of character regions
            Assert.AreEqual(5, charfmt.Count);

            // check the fonts
            Assert.AreEqual(segoeui.ID.ToString(), charfmt[0].Font.Result);
            Assert.AreEqual(impact.ID.ToString(), charfmt[1].Font.Result);
            Assert.AreEqual(couriernew.ID.ToString(), charfmt[2].Font.Result);
            Assert.AreEqual(georgia.ID.ToString(), charfmt[3].Font.Result);
            Assert.AreEqual(segoeui.ID.ToString(), charfmt[4].Font.Result);


            // check the styles
            Assert.AreEqual(((int)VA.Models.Text.CharStyle.None).ToString(), charfmt[0].Style.Result);
            Assert.AreEqual(((int)VA.Models.Text.CharStyle.Italic).ToString(), charfmt[1].Style.Result);
            Assert.AreEqual(((int)VA.Models.Text.CharStyle.Bold).ToString(), charfmt[2].Style.Result);
            Assert.AreEqual(((int)(VA.Models.Text.CharStyle.Italic | VA.Models.Text.CharStyle.Bold)).ToString(), charfmt[3].Style.Result);
            Assert.AreEqual(((int)(VA.Models.Text.CharStyle.None)).ToString(), charfmt[4].Style.Result);

            // check the text run content
            var charruns = textfmt.CharacterTextRuns;

            Assert.AreEqual(4, charruns.Count);
            Assert.AreEqual("{Normal}", charruns[0].Text);
            Assert.AreEqual("{Italic}", charruns[1].Text);
            Assert.AreEqual("{Bold}", charruns[2].Text);
            Assert.AreEqual("{Bold Italic}", charruns[3].Text);

            // cleanup
            page1.Delete(0);
        }