Win32 API 日本語リファレンス
ホームSystem.RemoteDesktop › SnapshotFormatType

SnapshotFormatType

列挙型
基底型i4

メンバー 3

名前10進16進
SnapshotFormatPng00x0
SnapshotFormatJpeg10x1
SnapshotFormatBmp20x2

各言語での定義

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

typedef enum SnapshotFormatType : int {
    SnapshotFormatPng = 0,
    SnapshotFormatJpeg = 1,
    SnapshotFormatBmp = 2
} SnapshotFormatType;
public enum SnapshotFormatType : int
{
    SnapshotFormatPng = 0,
    SnapshotFormatJpeg = 1,
    SnapshotFormatBmp = 2,
}
Public Enum SnapshotFormatType As Integer
    SnapshotFormatPng = 0
    SnapshotFormatJpeg = 1
    SnapshotFormatBmp = 2
End Enum
import enum

class SnapshotFormatType(enum.IntEnum):
    SnapshotFormatPng = 0
    SnapshotFormatJpeg = 1
    SnapshotFormatBmp = 2
// SnapshotFormatType
pub const SnapshotFormatPng: i32 = 0;
pub const SnapshotFormatJpeg: i32 = 1;
pub const SnapshotFormatBmp: i32 = 2;
// SnapshotFormatType
const (
	SnapshotFormatPng int32 = 0
	SnapshotFormatJpeg int32 = 1
	SnapshotFormatBmp int32 = 2
)
const
  SnapshotFormatPng = 0;
  SnapshotFormatJpeg = 1;
  SnapshotFormatBmp = 2;
// SnapshotFormatType
pub const SnapshotFormatPng: i32 = 0;
pub const SnapshotFormatJpeg: i32 = 1;
pub const SnapshotFormatBmp: i32 = 2;
const
  SnapshotFormatPng* = 0
  SnapshotFormatJpeg* = 1
  SnapshotFormatBmp* = 2
enum SnapshotFormatType : int {
    SnapshotFormatPng = 0,
    SnapshotFormatJpeg = 1,
    SnapshotFormatBmp = 2,
}
#define global SnapshotFormatPng  0x0
#define global SnapshotFormatJpeg 0x1
#define global SnapshotFormatBmp  0x2