@@ -104,7 +104,7 @@ public virtual string Name
104104
105105 public virtual Point ClickablePoint
106106 {
107- get { return ( Point ) Property ( AutomationElement . ClickablePointProperty ) ; }
107+ get { return ( Point ) Property ( AutomationElement . ClickablePointProperty ) ; }
108108 }
109109
110110 public virtual string AccessKey
@@ -139,7 +139,7 @@ internal static BasePattern Pattern(AutomationElement automationElement, Automat
139139 object patternObject ;
140140 if ( automationElement . TryGetCurrentPattern ( pattern , out patternObject ) )
141141 {
142- return ( BasePattern ) patternObject ;
142+ return ( BasePattern ) patternObject ;
143143 }
144144 return null ;
145145 }
@@ -270,7 +270,7 @@ void PerformClick()
270270 public virtual void DoubleClick ( )
271271 {
272272 actionListener . ActionPerforming ( this ) ;
273- PerformIfValid ( ( ) => mouse . DoubleClick ( Bounds . Center ( ) , actionListener ) ) ;
273+ PerformIfValid ( ( ) => mouse . DoubleClick ( Bounds . Center ( ) , actionListener ) ) ;
274274 }
275275
276276 /// <summary>
@@ -338,8 +338,8 @@ public virtual Bitmap VisibleImage
338338 get
339339 {
340340 var displayedItem = new DisplayedItem ( new IntPtr ( automationElement . Current . NativeWindowHandle ) ) ;
341- using ( System . Drawing . Image image = displayedItem . GetVisibleImage ( ) )
342- return new Bitmap ( image ) ;
341+ using ( System . Drawing . Image image = displayedItem . GetVisibleImage ( ) )
342+ return new Bitmap ( image ) ;
343343 }
344344 }
345345
@@ -410,7 +410,7 @@ protected virtual void EnterData(string value)
410410 foreach ( var line in lines . Skip ( 1 ) )
411411 {
412412 keyboard . PressSpecialKey ( KeyboardInput . SpecialKeys . RETURN ) ;
413- keyboard . Send ( line , actionListener ) ;
413+ keyboard . Send ( line , actionListener ) ;
414414 }
415415 }
416416
@@ -421,7 +421,7 @@ internal virtual UIItemContainer AsContainer()
421421
422422 public virtual void RaiseClickEvent ( )
423423 {
424- var invokePattern = ( InvokePattern ) Pattern ( InvokePattern . Pattern ) ;
424+ var invokePattern = ( InvokePattern ) Pattern ( InvokePattern . Pattern ) ;
425425 if ( invokePattern != null ) invokePattern . Invoke ( ) ;
426426 }
427427 }
0 commit comments