Welcome to mirror list, hosted at ThFree Co, Russian Federation.

HotkeyPrefix.cs « System.Drawing.Text « System.Drawing « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df0418debc32428a324d2eabbe756bd56d431452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// System.Drawing.HotkeyPrefix.cs
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
// Author: Dennis Hayes (dennish@raytek.com)
//
using System;
namespace System.Drawing.Text 
{
	public enum HotkeyPrefix {
		Hide = 2,
		None = 0,
		Show = 1
	}
}