Ejemplo n.º 1
0
        private void TestTransitions()
        {
            int  hr;
            bool b;

            hr = m_pTimeline.EnableTransitions(true);
            DsError.ThrowExceptionForHR(hr);

            hr = m_pTimeline.TransitionsEnabled(out b);
            DsError.ThrowExceptionForHR(hr);

            Debug.Assert(b, "EnableTransitions");
        }