ホーム › System.Performance › AutoPathFormat
AutoPathFormat
列挙型メンバー 10
| 名前 | 10進 | 16進 |
|---|---|---|
| plaNone | 0 | 0x0 |
| plaPattern | 1 | 0x1 |
| plaComputer | 2 | 0x2 |
| plaMonthDayHour | 256 | 0x100 |
| plaSerialNumber | 512 | 0x200 |
| plaYearDayOfYear | 1024 | 0x400 |
| plaYearMonth | 2048 | 0x800 |
| plaYearMonthDay | 4096 | 0x1000 |
| plaYearMonthDayHour | 8192 | 0x2000 |
| plaMonthDayHourMinute | 16384 | 0x4000 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 16384enum 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