ComponentFactory.Krypton.Toolkit.PaletteRedirectContextMenu.GetContextMenuCheckedImage C# (CSharp) Method

GetContextMenuCheckedImage() public method

Gets a checked image appropriate for a context menu item.
public GetContextMenuCheckedImage ( ) : Image
return Image
        public override Image GetContextMenuCheckedImage()
        {
            Image retImage = _images.Checked;

            // Not found, then inherit from target
            if (retImage == null)
                retImage = Target.GetContextMenuCheckedImage();

            return retImage;
        }