INITCOMMONCONTROLSEX (Structures)
Last changed: -178.121.197.249

.
Summary

C# Definition:

    struct INITCOMMONCONTROLSEX {
        public int dwSize;
        public uint dwICC;
    }

    public struct INITCOMMONCONTROLSEX
    {
        private int dwSize;
        public uint dwICC;

        public INITCOMMONCONTROLSEX()
        {
        dwSize = Marshal.SizeOf(typeof(INITCOMMONCONTROLSEX));
        dwICC = 0;
        }

        public INITCOMMONCONTROLSEX(uint dwICC)
        : this()
        {
        this.dwICC = dwICC;
        }

        public INITCOMMONCONTROLSEX(CommonControls ICC)
        : this((uint)ICC)
        { }

        public CommonControls ICC { get { return (CommonControls)dwICC; } set { dwICC = (uint)value; } }
    }


VB Definition:

    Public Structure INITCOMMONCONTROLSEX
        Public dwSize As Integer
        Public dwICC As System.UInt32
    End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation