AODL.Document.Content.Tables.Column.Column C# (CSharp) Méthode

Column() public méthode

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.
Résultat 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