Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1452 chris 1
using System;
2
using System.Collections.Generic;
3
using System.Text;
4
 
5
namespace OpenTK
6
{
7
    /// <summary>
8
    /// Enumerates available window borders.
9
    /// </summary>
10
    public enum WindowBorder
11
    {
12
        /// <summary>
13
        /// The window has a resizable border. A window with a resizable border can be resized by the user or programmatically.
14
        /// </summary>
15
        Resizable = 0,
16
        /// <summary>
17
        /// The window has a fixed border. A window with a fixed border can only be resized programmatically.
18
        /// </summary>
19
        Fixed,
20
        /// <summary>
21
        /// The window does not have a border. A window with a hidden border can only be resized programmatically.
22
        /// </summary>
23
        Hidden
24
    }
25
}