AODL.Document.SpreadsheetDocuments.SpreadsheetDocument.TableCollection_Inserted C# (CSharp) Method

TableCollection_Inserted() private method

Tables the collection_ inserted.
private TableCollection_Inserted ( int index, object value ) : void
index int The index.
value object The value.
return void
		private void TableCollection_Inserted(int index, object value)
		{
			this._tableCount++;
			if (!this.Content.Contains(value as IContent))
				this.Content.Add(value as IContent);
		}