Algebra.QL.Print.Stmnt.BlockStmnt.BuildDocument C# (CSharp) Method

BuildDocument() public method

public BuildDocument ( int indentation ) : System.Windows.Documents.Block
indentation int
return 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;
        }