public static Run AppendTab(this Run source)
        {
            if (source is null)
            {
                throw new ArgumentNullException(nameof(source));
            }

            source.AddTab();
            return(source);
        }