예제 #1
0
파일: StyleTests.cs 프로젝트: cj525/yaclops
        public void CanSetStyleOnBody()
        {
            var doc = new Document();

            var style = new StyleEx();

            style.SetIndent("body", 5);

            style.GetIndent(doc).ShouldBe(5);
        }
예제 #2
0
파일: StyleTests.cs 프로젝트: cj525/yaclops
        public void CanSetStyleOnParagraph()
        {
            var doc = new Document();
            var para = doc.AddParagraph();

            var style = new StyleEx();

            style.SetIndent("p", 5);

            style.GetIndent(para).ShouldBe(5);
        }