Esempio n. 1
0
        public RichTextFluent Space(int spaceCount = 4)
        {
            for (int i = 0; i < spaceCount; i++)
            {
                _builder.AppendWithoutRich(" ");
            }

            return(this);
        }