Brings the into view the specified rectangle area.
Syntax
'Declaration
Public Overloads Sub BringIntoView( _
ByVal As Rect, _
Optional ByVal As Boolean, _
Optional ByVal As Action _
)
'Usage
Dim instance As C1ListViewer
Dim area As Rect
Dim changeZoomIfNecessary As Boolean
Dim completed As Action
instance.BringIntoView(area, changeZoomIfNecessary, completed)
public void BringIntoView(
Rect ,
bool ,
Action
)
public:
void BringIntoView(
Rect ,
bool ,
Action^
)
Parameters
- area
- The area which will be brought into view.
- changeZoomIfNecessary
- If true, the zoom will be changed so that the whole area is visible.
- completed
- The action to be called after the operation is completed.
See Also