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

AutoPathFormat

列挙型
基底型i4

メンバー 10

名前10進16進
plaNone00x0
plaPattern10x1
plaComputer20x2
plaMonthDayHour2560x100
plaSerialNumber5120x200
plaYearDayOfYear10240x400
plaYearMonth20480x800
plaYearMonthDay40960x1000
plaYearMonthDayHour81920x2000
plaMonthDayHourMinute163840x4000

各言語での定義

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

typedef enum AutoPathFormat : int {
    plaNone = 0,
    plaPattern = 1,
    plaComputer = 2,
    plaMonthDayHour = 256,
    plaSerialNumber = 512,
    plaYearDayOfYear = 1024,
    plaYearMonth = 2048,
    plaYearMonthDay = 4096,
    plaYearMonthDayHour = 8192,
    plaMonthDayHourMinute = 16384
} AutoPathFormat;
public enum AutoPathFormat : int
{
    plaNone = 0,
    plaPattern = 1,
    plaComputer = 2,
    plaMonthDayHour = 256,
    plaSerialNumber = 512,
    plaYearDayOfYear = 1024,
    plaYearMonth = 2048,
    plaYearMonthDay = 4096,
    plaYearMonthDayHour = 8192,
    plaMonthDayHourMinute = 16384,
}
Public Enum AutoPathFormat As Integer
    plaNone = 0
    plaPattern = 1
    plaComputer = 2
    plaMonthDayHour = 256
    plaSerialNumber = 512
    plaYearDayOfYear = 1024
    plaYearMonth = 2048
    plaYearMonthDay = 4096
    plaYearMonthDayHour = 8192
    plaMonthDayHourMinute = 16384
End Enum
import enum

class AutoPathFormat(enum.IntEnum):
    plaNone = 0
    plaPattern = 1
    plaComputer = 2
    plaMonthDayHour = 256
    plaSerialNumber = 512
    plaYearDayOfYear = 1024
    plaYearMonth = 2048
    plaYearMonthDay = 4096
    plaYearMonthDayHour = 8192
    plaMonthDayHourMinute = 16384
// AutoPathFormat
pub const plaNone: i32 = 0;
pub const plaPattern: i32 = 1;
pub const plaComputer: i32 = 2;
pub const plaMonthDayHour: i32 = 256;
pub const plaSerialNumber: i32 = 512;
pub const plaYearDayOfYear: i32 = 1024;
pub const plaYearMonth: i32 = 2048;
pub const plaYearMonthDay: i32 = 4096;
pub const plaYearMonthDayHour: i32 = 8192;
pub const plaMonthDayHourMinute: i32 = 16384;
// AutoPathFormat
const (
	plaNone int32 = 0
	plaPattern int32 = 1
	plaComputer int32 = 2
	plaMonthDayHour int32 = 256
	plaSerialNumber int32 = 512
	plaYearDayOfYear int32 = 1024
	plaYearMonth int32 = 2048
	plaYearMonthDay int32 = 4096
	plaYearMonthDayHour int32 = 8192
	plaMonthDayHourMinute int32 = 16384
)
const
  plaNone = 0;
  plaPattern = 1;
  plaComputer = 2;
  plaMonthDayHour = 256;
  plaSerialNumber = 512;
  plaYearDayOfYear = 1024;
  plaYearMonth = 2048;
  plaYearMonthDay = 4096;
  plaYearMonthDayHour = 8192;
  plaMonthDayHourMinute = 16384;
// AutoPathFormat
pub const plaNone: i32 = 0;
pub const plaPattern: i32 = 1;
pub const plaComputer: i32 = 2;
pub const plaMonthDayHour: i32 = 256;
pub const plaSerialNumber: i32 = 512;
pub const plaYearDayOfYear: i32 = 1024;
pub const plaYearMonth: i32 = 2048;
pub const plaYearMonthDay: i32 = 4096;
pub const plaYearMonthDayHour: i32 = 8192;
pub const plaMonthDayHourMinute: i32 = 16384;
const
  plaNone* = 0
  plaPattern* = 1
  plaComputer* = 2
  plaMonthDayHour* = 256
  plaSerialNumber* = 512
  plaYearDayOfYear* = 1024
  plaYearMonth* = 2048
  plaYearMonthDay* = 4096
  plaYearMonthDayHour* = 8192
  plaMonthDayHourMinute* = 16384
enum AutoPathFormat : int {
    plaNone = 0,
    plaPattern = 1,
    plaComputer = 2,
    plaMonthDayHour = 256,
    plaSerialNumber = 512,
    plaYearDayOfYear = 1024,
    plaYearMonth = 2048,
    plaYearMonthDay = 4096,
    plaYearMonthDayHour = 8192,
    plaMonthDayHourMinute = 16384,
}
#define global plaNone               0x0
#define global plaPattern            0x1
#define global plaComputer           0x2
#define global plaMonthDayHour       0x100
#define global plaSerialNumber       0x200
#define global plaYearDayOfYear      0x400
#define global plaYearMonth          0x800
#define global plaYearMonthDay       0x1000
#define global plaYearMonthDayHour   0x2000
#define global plaMonthDayHourMinute 0x4000