TrakHound_UI.Timeline.TimelineTray.ResetEvents C# (CSharp) Method

ResetEvents() public method

ResetEvents method adds events specified in xml to all timeline bands. If you need to refresh events call ClearEvents and then ResetEvents, this will removed all events from the screen and then draw up-to-date events.
public ResetEvents ( string xml ) : void
xml string The XML data that contains the data for the timeline events.
return void
        public void ResetEvents(
            string                                      xml
        )
        {
            ResetEvents(XDocument.Parse(xml));
        }

Same methods

TimelineTray::ResetEvents ( List events, bool fixDates = true ) : void
TimelineTray::ResetEvents ( System.Xml.Linq.XDocument doc ) : void