ComponentFactory.Krypton.Toolkit.PaletteOffice2007Base.GetTreeViewImage C# (CSharp) Method

GetTreeViewImage() public method

Gets a tree view image appropriate for the provided state.
public GetTreeViewImage ( bool expanded ) : Image
expanded bool Is the node expanded
return Image
        public override Image GetTreeViewImage(bool expanded)
        {
            if (expanded)
                return _treeMinus;
            else
                return _treePlus;
        }
PaletteOffice2007Base