ComponentFactory.Krypton.Ribbon.ViewDrawRibbonDropArrow.RenderBefore C# (CSharp) Method

RenderBefore() public method

Perform rendering before child elements are rendered.
public RenderBefore ( RenderContext context ) : void
context ComponentFactory.Krypton.Toolkit.RenderContext Rendering context.
return void
        public override void RenderBefore(RenderContext context)
        {
            // Use renderer to draw the drop arrow in the provided space
            context.Renderer.RenderGlyph.DrawRibbonDropArrow(_ribbon.RibbonShape,
                                                             context,
                                                             ClientRectangle,
                                                             _ribbon.StateCommon.RibbonGeneral,
                                                             State);
        }