Xamarin.iOS Documentation | ComponentOne
C1.iOS.Chart Assembly / C1.iOS.Chart.Interaction Namespace / C1LineMarker Class / PositionChanged Event


In This Topic
    PositionChanged Event
    In This Topic
    Occurs after the LineMarker's position changes.
    Syntax
    'Declaration
     
    
    Public Event PositionChanged As EventHandler(Of PositionChangedArgs)
    'Usage
     
    
    Dim instance As C1LineMarker
    Dim handler As EventHandler(Of PositionChangedArgs)
     
    AddHandler instance.PositionChanged, handler
    public event EventHandler<PositionChangedArgs> PositionChanged
    Event Data

    The event handler receives an argument of type PositionChangedArgs containing data related to this event. The following PositionChangedArgs properties provide information specific to this event.

    PropertyDescription
    Gets the target point at which to show the LineMarker.  
    See Also