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;
        }