AtspiUiaSource.GridEventHandler.OnRowInserted C# (CSharp) Method

OnRowInserted() private method

private OnRowInserted ( Accessible sender, int row, int nInserted ) : void
sender Atspi.Accessible
row int
nInserted int
return void
		private void OnRowInserted (Accessible sender, int row, int nInserted)
		{
			int newVal = element.accessible.QueryTable ().NRows;
			AutomationSource.RaisePropertyChangedEvent (
				element,
				GridPatternIdentifiers.RowCountProperty,
				newVal - nInserted,
				newVal);
		}