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

TypeLibVarFlags.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5bf60e5a03a23bda926bf94e1612fe19fd26cb8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// System.Runtime.InteropServices.TypeLibVarFlags.cs
// 
// Name: Duncan Mak  (duncan@ximian.com)
// 
// (C) Ximian, Inc.
// 

namespace System.Runtime.InteropServices {
	
	[Flags] [Serializable]
	public enum TypeLibVarFlags {
		FReadOnly = 1,
		FSource = 2,
		FBindable = 4,
		FRequestEdit = 8,
		FDisplayBind = 16,
		FDefaultBind = 32,
		FHidden = 64,
		FRestricted = 128,
		FDefaultCollelem = 256,
		FUiDefault = 512,
		FNonBrowsable = 1024,
		FReplaceable = 2048,
		FImmediateBind = 4096,
	}
}