Exemple #1
0
        private void TestTimeLine()
        {
            int         hr;
            IAMTimeline tl2;

            m_pTimeline = (IAMTimeline) new AMTimeline();

            hr = m_ire.SetTimelineObject(m_pTimeline);
            DESError.ThrowExceptionForHR(hr);

            hr = m_ire.GetTimelineObject(out tl2);
            DESError.ThrowExceptionForHR(hr);

            Debug.Assert(m_pTimeline == tl2, "TimeLine");
        }