public void OutlineText()
            {
                var endWithoutNewline = InsertedEnd.CreateEditPoint();

                endWithoutNewline.CharLeft(1);
                InsertStart.CreateEditPoint().OutlineSection(endWithoutNewline);
            }
            public TextPoint GetContentEndPoint()
            {
                EditPoint endP = InsertStart.CreateEditPoint();

                endP.CharRightExact(Content.Length);
                return(endP);
            }
示例#3
0
            public void OutlineText()
            {
                var endPointExcludingNewline = InsertedEnd.CreateEditPoint();

                endPointExcludingNewline.CharLeft();
                InsertStart.CreateEditPoint().OutlineSection(endPointExcludingNewline);
            }