Win32 API 日本語リファレンス
ホームWeb.MsHtml › styleInterpolation

styleInterpolation

列挙型
基底型i4

メンバー 4

名前10進16進
styleInterpolationNotSet00x0
styleInterpolationNN10x1
styleInterpolationBCH20x2
styleInterpolation_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleInterpolation : int {
    styleInterpolationNotSet = 0,
    styleInterpolationNN = 1,
    styleInterpolationBCH = 2,
    styleInterpolation_Max = 2147483647
} styleInterpolation;
public enum styleInterpolation : int
{
    styleInterpolationNotSet = 0,
    styleInterpolationNN = 1,
    styleInterpolationBCH = 2,
    styleInterpolation_Max = 2147483647,
}
Public Enum styleInterpolation As Integer
    styleInterpolationNotSet = 0
    styleInterpolationNN = 1
    styleInterpolationBCH = 2
    styleInterpolation_Max = 2147483647
End Enum
import enum

class styleInterpolation(enum.IntEnum):
    styleInterpolationNotSet = 0
    styleInterpolationNN = 1
    styleInterpolationBCH = 2
    styleInterpolation_Max = 2147483647
// styleInterpolation
pub const styleInterpolationNotSet: i32 = 0;
pub const styleInterpolationNN: i32 = 1;
pub const styleInterpolationBCH: i32 = 2;
pub const styleInterpolation_Max: i32 = 2147483647;
// styleInterpolation
const (
	styleInterpolationNotSet int32 = 0
	styleInterpolationNN int32 = 1
	styleInterpolationBCH int32 = 2
	styleInterpolation_Max int32 = 2147483647
)
const
  styleInterpolationNotSet = 0;
  styleInterpolationNN = 1;
  styleInterpolationBCH = 2;
  styleInterpolation_Max = 2147483647;
// styleInterpolation
pub const styleInterpolationNotSet: i32 = 0;
pub const styleInterpolationNN: i32 = 1;
pub const styleInterpolationBCH: i32 = 2;
pub const styleInterpolation_Max: i32 = 2147483647;
const
  styleInterpolationNotSet* = 0
  styleInterpolationNN* = 1
  styleInterpolationBCH* = 2
  styleInterpolation_Max* = 2147483647
enum styleInterpolation : int {
    styleInterpolationNotSet = 0,
    styleInterpolationNN = 1,
    styleInterpolationBCH = 2,
    styleInterpolation_Max = 2147483647,
}
#define global styleInterpolationNotSet 0x0
#define global styleInterpolationNN     0x1
#define global styleInterpolationBCH    0x2
#define global styleInterpolation_Max   0x7FFFFFFF