AODL.Document.Content.Text.TextControl.WhiteSpaceHelper.GetHtmlWhiteSpace C# (CSharp) Method

GetHtmlWhiteSpace() private static method

Gets the HTML white space.
private static GetHtmlWhiteSpace ( int length ) : string
length int The length.
return string
		private static string GetHtmlWhiteSpace(int length)
		{
			string html					= "";
			for(int i=0; i<length; i++)
				html		+= "&nbsp;";
			return html;
		}