|
//------------------------------------------------------------------------------
// <copyright file="ColorDepth.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Windows.Forms {
using System.Diagnostics;
using System;
using System.ComponentModel;
using Microsoft.Win32;
// Used with ImageList.
/// <include file='doc\ColorDepth.uex' path='docs/doc[@for="ColorDepth"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public enum ColorDepth {
/// <include file='doc\ColorDepth.uex' path='docs/doc[@for="ColorDepth.Depth4Bit"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
Depth4Bit = 4,
/// <include file='doc\ColorDepth.uex' path='docs/doc[@for="ColorDepth.Depth8Bit"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
Depth8Bit = 8,
/// <include file='doc\ColorDepth.uex' path='docs/doc[@for="ColorDepth.Depth16Bit"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
Depth16Bit = 16,
/// <include file='doc\ColorDepth.uex' path='docs/doc[@for="ColorDepth.Depth24Bit"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
Depth24Bit = 24,
/// <include file='doc\ColorDepth.uex' path='docs/doc[@for="ColorDepth.Depth32Bit"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
Depth32Bit = 32,
}
}
|