ホーム › Graphics.Imaging › WICProgressNotification
WICProgressNotification
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| WICProgressNotificationBegin | 65536 | 0x10000 |
| WICProgressNotificationEnd | 131072 | 0x20000 |
| WICProgressNotificationFrequent | 262144 | 0x40000 |
| WICProgressNotificationAll | -65536 | 0xFFFF0000 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum WICProgressNotification : int {
WICProgressNotificationBegin = 65536,
WICProgressNotificationEnd = 131072,
WICProgressNotificationFrequent = 262144,
WICProgressNotificationAll = -65536
} WICProgressNotification;public enum WICProgressNotification : int
{
WICProgressNotificationBegin = 65536,
WICProgressNotificationEnd = 131072,
WICProgressNotificationFrequent = 262144,
WICProgressNotificationAll = -65536,
}Public Enum WICProgressNotification As Integer
WICProgressNotificationBegin = 65536
WICProgressNotificationEnd = 131072
WICProgressNotificationFrequent = 262144
WICProgressNotificationAll = -65536
End Enumimport enum
class WICProgressNotification(enum.IntEnum):
WICProgressNotificationBegin = 65536
WICProgressNotificationEnd = 131072
WICProgressNotificationFrequent = 262144
WICProgressNotificationAll = -65536// WICProgressNotification
pub const WICProgressNotificationBegin: i32 = 65536;
pub const WICProgressNotificationEnd: i32 = 131072;
pub const WICProgressNotificationFrequent: i32 = 262144;
pub const WICProgressNotificationAll: i32 = -65536;// WICProgressNotification
const (
WICProgressNotificationBegin int32 = 65536
WICProgressNotificationEnd int32 = 131072
WICProgressNotificationFrequent int32 = 262144
WICProgressNotificationAll int32 = -65536
)const
WICProgressNotificationBegin = 65536;
WICProgressNotificationEnd = 131072;
WICProgressNotificationFrequent = 262144;
WICProgressNotificationAll = -65536;// WICProgressNotification
pub const WICProgressNotificationBegin: i32 = 65536;
pub const WICProgressNotificationEnd: i32 = 131072;
pub const WICProgressNotificationFrequent: i32 = 262144;
pub const WICProgressNotificationAll: i32 = -65536;const
WICProgressNotificationBegin* = 65536
WICProgressNotificationEnd* = 131072
WICProgressNotificationFrequent* = 262144
WICProgressNotificationAll* = -65536enum WICProgressNotification : int {
WICProgressNotificationBegin = 65536,
WICProgressNotificationEnd = 131072,
WICProgressNotificationFrequent = 262144,
WICProgressNotificationAll = -65536,
}#define global WICProgressNotificationBegin 0x10000
#define global WICProgressNotificationEnd 0x20000
#define global WICProgressNotificationFrequent 0x40000
#define global WICProgressNotificationAll 0xFFFF0000