ShellWindowTypeConstants
列挙型メンバー 5
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| SWC_EXPLORER | 0 | 0x0 | Windows エクスプローラー (Explorer.exe) のウィンドウです。 |
| SWC_BROWSER | 1 | 0x1 | Internet Explorer (Iexplore.exe) のブラウザーウィンドウです。 |
| SWC_3RDPARTY | 2 | 0x2 | Microsoft 製以外のブラウザーウィンドウです。 |
| SWC_CALLBACK | 4 | 0x4 | 作成コールバックウィンドウです。 |
| SWC_DESKTOP | 8 | 0x8 | Windows Vista 以降。Windows デスクトップです。 |
公式ドキュメント
シェルウィンドウの種類を指定します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum ShellWindowTypeConstants : int {
SWC_EXPLORER = 0,
SWC_BROWSER = 1,
SWC_3RDPARTY = 2,
SWC_CALLBACK = 4,
SWC_DESKTOP = 8
} ShellWindowTypeConstants;public enum ShellWindowTypeConstants : int
{
SWC_EXPLORER = 0,
SWC_BROWSER = 1,
SWC_3RDPARTY = 2,
SWC_CALLBACK = 4,
SWC_DESKTOP = 8,
}Public Enum ShellWindowTypeConstants As Integer
SWC_EXPLORER = 0
SWC_BROWSER = 1
SWC_3RDPARTY = 2
SWC_CALLBACK = 4
SWC_DESKTOP = 8
End Enumimport enum
class ShellWindowTypeConstants(enum.IntEnum):
SWC_EXPLORER = 0
SWC_BROWSER = 1
SWC_3RDPARTY = 2
SWC_CALLBACK = 4
SWC_DESKTOP = 8// ShellWindowTypeConstants
pub const SWC_EXPLORER: i32 = 0;
pub const SWC_BROWSER: i32 = 1;
pub const SWC_3RDPARTY: i32 = 2;
pub const SWC_CALLBACK: i32 = 4;
pub const SWC_DESKTOP: i32 = 8;// ShellWindowTypeConstants
const (
SWC_EXPLORER int32 = 0
SWC_BROWSER int32 = 1
SWC_3RDPARTY int32 = 2
SWC_CALLBACK int32 = 4
SWC_DESKTOP int32 = 8
)const
SWC_EXPLORER = 0;
SWC_BROWSER = 1;
SWC_3RDPARTY = 2;
SWC_CALLBACK = 4;
SWC_DESKTOP = 8;// ShellWindowTypeConstants
pub const SWC_EXPLORER: i32 = 0;
pub const SWC_BROWSER: i32 = 1;
pub const SWC_3RDPARTY: i32 = 2;
pub const SWC_CALLBACK: i32 = 4;
pub const SWC_DESKTOP: i32 = 8;const
SWC_EXPLORER* = 0
SWC_BROWSER* = 1
SWC_3RDPARTY* = 2
SWC_CALLBACK* = 4
SWC_DESKTOP* = 8enum ShellWindowTypeConstants : int {
SWC_EXPLORER = 0,
SWC_BROWSER = 1,
SWC_3RDPARTY = 2,
SWC_CALLBACK = 4,
SWC_DESKTOP = 8,
}#define global SWC_EXPLORER 0x0
#define global SWC_BROWSER 0x1
#define global SWC_3RDPARTY 0x2
#define global SWC_CALLBACK 0x4
#define global SWC_DESKTOP 0x8