Algebra.QL.Extensions.Print.Stmnt.GotoStmnt.BuildDocument C# (CSharp) Метод

BuildDocument() публичный Метод

public BuildDocument ( int indentation ) : System.Windows.Documents.Block
indentation int
Результат System.Windows.Documents.Block
        public Block BuildDocument(int indentation)
        {
            Paragraph p = new Paragraph() { Margin = new Thickness(indentation, 0, 0, 0) };
            p.Inlines.Add(new Run("gotoNextForm") { Foreground = StyleSettings.KeyWordColor });
            p.Inlines.Add(";");
            return p;
        }