System.Windows.Controls.ScrollViewer.RaiseUIAScrollBarSet C# (CSharp) Method

RaiseUIAScrollBarSet() private method

private RaiseUIAScrollBarSet ( AutomationOrientation orientation, ScrollBar oldValue, ScrollBar newValue ) : void
orientation AutomationOrientation
oldValue ScrollBar
newValue ScrollBar
return void
	internal void RaiseUIAScrollBarSet (AutomationOrientation orientation, ScrollBar oldValue, ScrollBar newValue) 
	{
		if (UIAScrollBarSet != null)
			UIAScrollBarSet (this, new ScrollBarSetEventArgs () {
			                           Orientation = orientation,
			                           OldValue    = oldValue,
			                           NewValue    = newValue
					 });
	}