AODL.Document.Content.Tables.Table.Table C# (CSharp) Метод

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

Initializes a new instance of the Table class.
public Table ( IDocument document, XmlNode node ) : System
document IDocument The document.
node System.Xml.XmlNode The node.
Результат System
		public Table(IDocument document, XmlNode node)
		{
			this.Document					= document;
			this.Node						= node;

			this.Rows				= new RowCollection();
			this.ColumnCollection			= new ColumnCollection();
			this.Forms = new ODFFormCollection();
			this._forms.Clearing += FormsCollection_Clear;
			this._forms.Removed += FormCollection_Removed;
		}

Same methods

Table::Table ( IDocument document, string name, string styleName ) : System