AODL.Document.Styles.Properties.RowProperties.GetHtmlStyle C# (CSharp) Метод

GetHtmlStyle() публичный Метод

Gets the HTML style.
public GetHtmlStyle ( ) : string
Результат string
		public string GetHtmlStyle()
		{
			string style		= "style=\"";

			if (this.BackgroundColor != null)
				style	+= "background-color: "+this.BackgroundColor+"; ";

			if (!style.EndsWith("; "))
				style	= "";
			else
				style	+= "\"";

			return style;
		}