AODL.Document.SpreadsheetDocuments.SpreadsheetDocument.Content_Inserted C# (CSharp) Метод

Content_Inserted() приватный Метод

Content_s the inserted.
private Content_Inserted ( int index, object value ) : void
index int The index.
value object The value.
Результат void
		private void Content_Inserted(int index, object value)
		{
			if (value is Table)
				if (!this.TableCollection.Contains((Table)value))
				this.TableCollection.Add(value as Table);
		}