Win32 API 日本語リファレンス
ホームUI.Accessibility › ProviderType

ProviderType

列挙型
基底型i4

メンバー 3

名前10進16進説明
ProviderType_BaseHwnd00x0プロバイダーはウィンドウ ベースです。
ProviderType_Proxy10x1プロバイダーは、Microsoft 提供の Win32 または Windows Forms のプロバイダーか、サードパーティ製のプロキシ プロバイダーです。
ProviderType_NonClientArea20x2プロバイダーは、ウィンドウの非クライアント領域の要素に対するプロキシです。

公式ドキュメント

クライアント側 (プロキシ) UI オートメーション プロバイダーの種類を指定する値を含みます。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum ProviderType : int {
    ProviderType_BaseHwnd = 0,
    ProviderType_Proxy = 1,
    ProviderType_NonClientArea = 2
} ProviderType;
public enum ProviderType : int
{
    ProviderType_BaseHwnd = 0,
    ProviderType_Proxy = 1,
    ProviderType_NonClientArea = 2,
}
Public Enum ProviderType As Integer
    ProviderType_BaseHwnd = 0
    ProviderType_Proxy = 1
    ProviderType_NonClientArea = 2
End Enum
import enum

class ProviderType(enum.IntEnum):
    ProviderType_BaseHwnd = 0
    ProviderType_Proxy = 1
    ProviderType_NonClientArea = 2
// ProviderType
pub const ProviderType_BaseHwnd: i32 = 0;
pub const ProviderType_Proxy: i32 = 1;
pub const ProviderType_NonClientArea: i32 = 2;
// ProviderType
const (
	ProviderType_BaseHwnd int32 = 0
	ProviderType_Proxy int32 = 1
	ProviderType_NonClientArea int32 = 2
)
const
  ProviderType_BaseHwnd = 0;
  ProviderType_Proxy = 1;
  ProviderType_NonClientArea = 2;
// ProviderType
pub const ProviderType_BaseHwnd: i32 = 0;
pub const ProviderType_Proxy: i32 = 1;
pub const ProviderType_NonClientArea: i32 = 2;
const
  ProviderType_BaseHwnd* = 0
  ProviderType_Proxy* = 1
  ProviderType_NonClientArea* = 2
enum ProviderType : int {
    ProviderType_BaseHwnd = 0,
    ProviderType_Proxy = 1,
    ProviderType_NonClientArea = 2,
}
#define global ProviderType_BaseHwnd      0x0
#define global ProviderType_Proxy         0x1
#define global ProviderType_NonClientArea 0x2