Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2287 - 1

2
namespace GMap.NET
3
{
4
   /// <summary>
5
   /// types of map rendering
6
   /// </summary>
7
   public enum RenderMode
8
   {
9
      /// <summary>
10
      /// gdi+ should work anywhere on Windows Forms
11
      /// </summary>
12
      GDI_PLUS,
13
 
14
      /// <summary>
15
      /// only on Windows Presentation Foundation
16
      /// </summary>
17
      WPF,
18
   }
19
}