MonoTests.Mono.UIAutomation.Winforms.MockBridge.GetAutomationPropertyEventFrom C# (CSharp) 메소드

GetAutomationPropertyEventFrom() 공개 메소드

public GetAutomationPropertyEventFrom ( object element, int id ) : AutomationPropertyChangedEventTuple
element object
id int
리턴 AutomationPropertyChangedEventTuple
		public AutomationPropertyChangedEventTuple GetAutomationPropertyEventFrom (object element, int id)
		{
			foreach (AutomationPropertyChangedEventTuple tuple in AutomationPropertyChangedEvents) {
				if (tuple.element == element && tuple.e.Property.Id == id)
					return tuple;
			}
			
			
			return null;
		}