ComponentOne FinancialChart for WPF
C1.WPF Namespace / C1ListViewer Class / BringIntoView Method / BringIntoView(Rect,Boolean,Action) Method
The area which will be brought into view.
If true, the zoom will be changed so that the whole area is visible.
The action to be called after the operation is completed.



In This Topic
    BringIntoView(Rect,Boolean,Action) Method
    In This Topic
    Brings the into view the specified rectangle area.
    Syntax
    'Declaration
     
    
    Public Overloads Sub BringIntoView( _
       ByVal area As Rect, _
       Optional ByVal changeZoomIfNecessary As Boolean, _
       Optional ByVal completed 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 area,
       bool changeZoomIfNecessary,
       Action completed
    )
    public:
    void BringIntoView( 
       Rect area,
       bool changeZoomIfNecessary,
       Action^ completed
    ) 

    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