Files
Dec2017-Script-Dump/mscorlib/System/Runtime/InteropServices/VARFLAGS.cs
T
2026-06-04 11:42:34 +02:00

53 lines
2.8 KiB
C#

using System;
namespace System.Runtime.InteropServices
{
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.VARFLAGS" /> instead.</summary>
// Token: 0x02000365 RID: 869
[Obsolete]
[Flags]
[Serializable]
public enum VARFLAGS
{
/// <summary>Assignment to the variable should not be allowed.</summary>
// Token: 0x04000E57 RID: 3671
VARFLAG_FREADONLY = 1,
/// <summary>The variable returns an object that is a source of events.</summary>
// Token: 0x04000E58 RID: 3672
VARFLAG_FSOURCE = 2,
/// <summary>The variable supports data binding.</summary>
// Token: 0x04000E59 RID: 3673
VARFLAG_FBINDABLE = 4,
/// <summary>When set, any attempt to directly change the property results in a call to IPropertyNotifySink::OnRequestEdit. The implementation of OnRequestEdit determines if the change is accepted.</summary>
// Token: 0x04000E5A RID: 3674
VARFLAG_FREQUESTEDIT = 8,
/// <summary>The variable is displayed to the user as bindable. <see cref="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FBINDABLE" /> must also be set.</summary>
// Token: 0x04000E5B RID: 3675
VARFLAG_FDISPLAYBIND = 16,
/// <summary>The variable is the single property that best represents the object. Only one variable in type information can have this attribute.</summary>
// Token: 0x04000E5C RID: 3676
VARFLAG_FDEFAULTBIND = 32,
/// <summary>The variable should not be displayed to the user in a browser, although it exists and is bindable.</summary>
// Token: 0x04000E5D RID: 3677
VARFLAG_FHIDDEN = 64,
/// <summary>The variable should not be accessible from macro languages. This flag is intended for system-level variables or variables that you do not want type browsers to display.</summary>
// Token: 0x04000E5E RID: 3678
VARFLAG_FRESTRICTED = 128,
/// <summary>Permits an optimization in which the compiler looks for a member named "xyz" on the type of "abc". If such a member is found and is flagged as an accessor function for an element of the default collection, then a call is generated to that member function. Permitted on members in dispinterfaces and interfaces; not permitted on modules.</summary>
// Token: 0x04000E5F RID: 3679
VARFLAG_FDEFAULTCOLLELEM = 256,
/// <summary>The variable is the default display in the user interface.</summary>
// Token: 0x04000E60 RID: 3680
VARFLAG_FUIDEFAULT = 512,
/// <summary>The variable appears in an object browser, but not in a properties browser.</summary>
// Token: 0x04000E61 RID: 3681
VARFLAG_FNONBROWSABLE = 1024,
/// <summary>Tags the interface as having default behaviors.</summary>
// Token: 0x04000E62 RID: 3682
VARFLAG_FREPLACEABLE = 2048,
/// <summary>The variable is mapped as individual bindable properties.</summary>
// Token: 0x04000E63 RID: 3683
VARFLAG_FIMMEDIATEBIND = 4096
}
}