AODL.Document.Content.Tables.Table.FormCollection_Removed C# (CSharp) Method

FormCollection_Removed() private method

private FormCollection_Removed ( int index, object value ) : void
index int
value object
return void
		private void FormCollection_Removed(int index, object value)
		{
			ODFForm child = (value as ODFForm);
			if (child !=null)
			{
				child.Controls.Clear();
			}
		}