BrightIdeasSoftware.TreeListView.TreeRenderer.DrawExpansionGlyph C# (CSharp) Method

DrawExpansionGlyph() protected method

Draw the expansion indicator
protected DrawExpansionGlyph ( Graphics g, Rectangle r, bool isExpanded ) : void
g System.Drawing.Graphics
r System.Drawing.Rectangle
isExpanded bool
return void
            protected virtual void DrawExpansionGlyph(Graphics g, Rectangle r, bool isExpanded)
            {
                if (this.UseStyles) {
                    this.DrawExpansionGlyphStyled(g, r, isExpanded);
                } else {
                    this.DrawExpansionGlyphManual(g, r, isExpanded);
                }
            }