AnimationDeveloperSamples.cmdMoveGraphicAlongPath.cmdMoveGraphicAlongPath C# (CSharp) Method

cmdMoveGraphicAlongPath() public method

public cmdMoveGraphicAlongPath ( ) : System
return System
        public cmdMoveGraphicAlongPath()
        {
            //
            // TODO: Define values for the public properties
            //
            base.m_category = "Animation Developer Samples"; //localizable text
            base.m_caption = "Move Graphic along Path...";  //localizable text 
            base.m_message = "Move graphic along a selected line graphic or line feature";  //localizable text
            base.m_toolTip = "Move graphic along path";  //localizable text
            base.m_name = "AnimationDeveloperSamples_cmdMoveGraphicAlongPath";   //unique id, non-localizable (e.g. "MyCategory_MyCommand")

            string[] res = GetType().Assembly.GetManifestResourceNames();
            if (res.GetLength(0) > 0)
            {
                base.m_bitmap = new Bitmap(GetType().Assembly.GetManifestResourceStream(GetType(), "cmdMoveGraphicAlongPath.bmp"));
            }
        }