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;
		}