AODL.Document.Styles.Properties.SectionProperties.AddStandardColumnStyle C# (CSharp) Метод

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

Adds the standard column style. While creating new TableOfContent objects AODL will only support a TableOfContent which use the Header styles with outlining without table columns
public AddStandardColumnStyle ( ) : void
Результат void
		public void AddStandardColumnStyle()
		{
			XmlNode standardColStyle	= this.Style.Document.CreateNode("columns", "style");

			XmlAttribute xa				= this.Style.Document.CreateAttribute("column-count", "fo");
			xa.Value					= "0";
			standardColStyle.Attributes.Append(xa);

			xa							= this.Style.Document.CreateAttribute("column-gap", "fo");
			xa.Value					= "0cm";
			standardColStyle.Attributes.Append(xa);

			this.Node.AppendChild(standardColStyle);
		}