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

styleStrokeLinejoin

列挙型
基底型i4

メンバー 5

名前10進16進
styleStrokeLinejoinNotSet00x0
styleStrokeLinejoinMiter10x1
styleStrokeLinejoinRound20x2
styleStrokeLinejoinBevel30x3
styleStrokeLinejoin_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleStrokeLinejoin : int {
    styleStrokeLinejoinNotSet = 0,
    styleStrokeLinejoinMiter = 1,
    styleStrokeLinejoinRound = 2,
    styleStrokeLinejoinBevel = 3,
    styleStrokeLinejoin_Max = 2147483647
} styleStrokeLinejoin;
public enum styleStrokeLinejoin : int
{
    styleStrokeLinejoinNotSet = 0,
    styleStrokeLinejoinMiter = 1,
    styleStrokeLinejoinRound = 2,
    styleStrokeLinejoinBevel = 3,
    styleStrokeLinejoin_Max = 2147483647,
}
Public Enum styleStrokeLinejoin As Integer
    styleStrokeLinejoinNotSet = 0
    styleStrokeLinejoinMiter = 1
    styleStrokeLinejoinRound = 2
    styleStrokeLinejoinBevel = 3
    styleStrokeLinejoin_Max = 2147483647
End Enum
import enum

class styleStrokeLinejoin(enum.IntEnum):
    styleStrokeLinejoinNotSet = 0
    styleStrokeLinejoinMiter = 1
    styleStrokeLinejoinRound = 2
    styleStrokeLinejoinBevel = 3
    styleStrokeLinejoin_Max = 2147483647
// styleStrokeLinejoin
pub const styleStrokeLinejoinNotSet: i32 = 0;
pub const styleStrokeLinejoinMiter: i32 = 1;
pub const styleStrokeLinejoinRound: i32 = 2;
pub const styleStrokeLinejoinBevel: i32 = 3;
pub const styleStrokeLinejoin_Max: i32 = 2147483647;
// styleStrokeLinejoin
const (
	styleStrokeLinejoinNotSet int32 = 0
	styleStrokeLinejoinMiter int32 = 1
	styleStrokeLinejoinRound int32 = 2
	styleStrokeLinejoinBevel int32 = 3
	styleStrokeLinejoin_Max int32 = 2147483647
)
const
  styleStrokeLinejoinNotSet = 0;
  styleStrokeLinejoinMiter = 1;
  styleStrokeLinejoinRound = 2;
  styleStrokeLinejoinBevel = 3;
  styleStrokeLinejoin_Max = 2147483647;
// styleStrokeLinejoin
pub const styleStrokeLinejoinNotSet: i32 = 0;
pub const styleStrokeLinejoinMiter: i32 = 1;
pub const styleStrokeLinejoinRound: i32 = 2;
pub const styleStrokeLinejoinBevel: i32 = 3;
pub const styleStrokeLinejoin_Max: i32 = 2147483647;
const
  styleStrokeLinejoinNotSet* = 0
  styleStrokeLinejoinMiter* = 1
  styleStrokeLinejoinRound* = 2
  styleStrokeLinejoinBevel* = 3
  styleStrokeLinejoin_Max* = 2147483647
enum styleStrokeLinejoin : int {
    styleStrokeLinejoinNotSet = 0,
    styleStrokeLinejoinMiter = 1,
    styleStrokeLinejoinRound = 2,
    styleStrokeLinejoinBevel = 3,
    styleStrokeLinejoin_Max = 2147483647,
}
#define global styleStrokeLinejoinNotSet 0x0
#define global styleStrokeLinejoinMiter  0x1
#define global styleStrokeLinejoinRound  0x2
#define global styleStrokeLinejoinBevel  0x3
#define global styleStrokeLinejoin_Max   0x7FFFFFFF