Algebra.QL.Print.Stmnt.BlockStmnt.BuildDocument C# (CSharp) 메소드

BuildDocument() 공개 메소드

public BuildDocument ( int indentation ) : System.Windows.Documents.Block
indentation int
리턴 System.Windows.Documents.Block
        public Block BuildDocument(int indentation)
        {
            Section s = new Section();
            s.Blocks.Add(new Paragraph(new Run("{")));
            s.Blocks.Add(Body.BuildDocument(indentation));
            s.Blocks.Add(new Paragraph(new Run("}")));

            return s;
        }