Search
Step 5: Override the DrawShadowLocal method

Override the DrawShadowLocal method of the base class to implement custom drawing of shadows.

C#  Copy Code

public override void DrawShadowLocal(IGraphics graphics, RenderOptions options)
{
}

Visual Basic  Copy Code

Public Overrides Sub DrawShadowLocal(ByVal graphics As IGraphics, ByVal options as RenderOptions)

End Sub