Files
2026-06-04 11:42:34 +02:00

53 lines
2.9 KiB
C#

using System;
namespace System.Runtime.InteropServices
{
/// <summary>Use <see cref="T:System.Runtime.InteropServices.ComTypes.FUNCFLAGS" /> instead. </summary>
// Token: 0x02000314 RID: 788
[Obsolete]
[Flags]
[Serializable]
public enum FUNCFLAGS
{
/// <summary>The function should not be accessible from macro languages. This flag is intended for system-level functions or functions that type browsers should not display.</summary>
// Token: 0x04000D28 RID: 3368
FUNCFLAG_FRESTRICTED = 1,
/// <summary>The function returns an object that is a source of events.</summary>
// Token: 0x04000D29 RID: 3369
FUNCFLAG_FSOURCE = 2,
/// <summary>The function that supports data binding.</summary>
// Token: 0x04000D2A RID: 3370
FUNCFLAG_FBINDABLE = 4,
/// <summary>When set, any call to a method that sets the property results first in a call to IPropertyNotifySink::OnRequestEdit. The implementation of OnRequestEdit determines if the call is allowed to set the property.</summary>
// Token: 0x04000D2B RID: 3371
FUNCFLAG_FREQUESTEDIT = 8,
/// <summary>The function that is displayed to the user as bindable. <see cref="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FBINDABLE" /> must also be set.</summary>
// Token: 0x04000D2C RID: 3372
FUNCFLAG_FDISPLAYBIND = 16,
/// <summary>The function that best represents the object. Only one function in a type information can have this attribute.</summary>
// Token: 0x04000D2D RID: 3373
FUNCFLAG_FDEFAULTBIND = 32,
/// <summary>The function should not be displayed to the user, although it exists and is bindable.</summary>
// Token: 0x04000D2E RID: 3374
FUNCFLAG_FHIDDEN = 64,
/// <summary>The function supports GetLastError. If an error occurs during the function, the caller can call GetLastError to retrieve the error code.</summary>
// Token: 0x04000D2F RID: 3375
FUNCFLAG_FUSESGETLASTERROR = 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, a call is generated to that member function. Permitted on members in dispinterfaces and interfaces; not permitted on modules.</summary>
// Token: 0x04000D30 RID: 3376
FUNCFLAG_FDEFAULTCOLLELEM = 256,
/// <summary>The type information member is the default member for display in the user interface.</summary>
// Token: 0x04000D31 RID: 3377
FUNCFLAG_FUIDEFAULT = 512,
/// <summary>The property appears in an object browser, but not in a properties browser.</summary>
// Token: 0x04000D32 RID: 3378
FUNCFLAG_FNONBROWSABLE = 1024,
/// <summary>Tags the interface as having default behaviors.</summary>
// Token: 0x04000D33 RID: 3379
FUNCFLAG_FREPLACEABLE = 2048,
/// <summary>Mapped as individual bindable properties.</summary>
// Token: 0x04000D34 RID: 3380
FUNCFLAG_FIMMEDIATEBIND = 4096
}
}