@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Contains the desktop item options. !!!!C# Definition: [StructLayout(LayoutKind.Sequential)] public struct COMPONENTSOPT { public static readonly int SizeOf = Marshal.SizeOf(typeof(COMPONENTSOPT)); public int dwSize; [MarshalAs(UnmanagedType.Bool)] public bool fEnableComponents; [MarshalAs(UnmanagedType.Bool)] public bool fActiveDesktop; } !!!!VB Definition: <StructLayout(LayoutKind.Sequential)> _ Public Structure COMPONENTSOPT Public Shared ReadOnly SizeOf As Integer Public dwSize As Integer <MarshalAs(UnmanagedType.Bool)> _ Public fEnableComponents As Boolean <MarshalAs(UnmanagedType.Bool)> _ Public fActiveDesktop As Boolean Shared Sub New() COMPONENTSOPT.SizeOf = Marshal.SizeOf(GetType(COMPONENTSOPT)) End Sub End Structure !!!!User-Defined Field Types: None. !!!!Notes: None. Documentation: COMPONENTSOPT@msdn on MSDN
Edit Structures.COMPONENT
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.