AODL.Document.Styles.Properties.TextProperties.SetUnderlineStyles C# (CSharp) Метод

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

Use to set all possible underline styles. You can use this method instead to set all necessary properties by hand.
public SetUnderlineStyles ( string style, string width, string color ) : void
style string The style. Sess enum LineStyles.
width string The width. Sess enum LineWidths.
color string The color. "font-color" or as hex #[0-9a-fA-F]{6}
Результат void
		public void SetUnderlineStyles(string style, string width, string color)
		{
			this.Underline		= style;
			this.UnderlineWidth	= width;
			this.UnderlineColor	= color;
		}