AODL.Document.Content.Draw.DrawArea.Content_Inserted C# (CSharp) Method

Content_Inserted() protected method

Content_s the inserted.
protected Content_Inserted ( int index, object value ) : void
index int The index.
value object The value.
return void
		protected void Content_Inserted(int index, object value)
		{
			if (this.Node != null)
				this.Node.AppendChild(((IContent)value).Node);
		}