AODL.Document.Content.Text.TextControl.WhiteSpaceHelper.GetHtmlWhiteSpace C# (CSharp) Метод

GetHtmlWhiteSpace() приватный статический Метод

Gets the HTML white space.
private static GetHtmlWhiteSpace ( int length ) : string
length int The length.
Результат string
		private static string GetHtmlWhiteSpace(int length)
		{
			string html					= "";
			for(int i=0; i<length; i++)
				html		+= "&nbsp;";
			return html;
		}