AODL.Document.Content.Tables.Column.Column C# (CSharp) Method

Column() public method

Initializes a new instance of the Column class.
public Column ( Table table, string styleName ) : System
table Table The table.
styleName string Name of the style.
return System
		public Column(Table table, string styleName)
		{
			this.Table				= table;
			this.Document			= table.Document;
			this.NewXmlNode(styleName);
			this.ColumnStyle		= this.Document.StyleFactory.Request<ColumnStyle>(styleName);	
		}

Same methods

Column::Column ( IDocument document, XmlNode node ) : System