AddMapSurrounds.CreateScaleText.CreateScaleText C# (CSharp) Method

CreateScaleText() public method

public CreateScaleText ( ) : System
return System
		public CreateScaleText()
		{
		    //Create an IHookHelper object
			m_HookHelper = new HookHelperClass();

			//Set the tool properties
			base.m_bitmap = new System.Drawing.Bitmap(GetType().Assembly.GetManifestResourceStream(GetType(), "ScaleText.bmp"));
			base.m_caption = "ScaleText";
			base.m_category = "myCustomCommands(C#)";
			base.m_message = "Add a scale text map surround";
			base.m_name = "myCustomCommands(C#)_ScaleText";
			base.m_toolTip = "Add a scale text";
			base.m_deactivate = true;
		}