Exemplo n.º 1
0
 /// <summary>
 /// Does any command-specific drawing.
 /// </summary>
 /// <param name="point">The specific point (if any) that the parent window has drawn. Not used.</param>
 internal override void Paint(PointFeature point)
 {
     if (m_Cmd == null)
     {
         Draw();
     }
     else
     {
         m_Cmd.Paint(point);
     }
 }