Win32 API 日本語リファレンス
ホームUI.TabletPC › InkRecognitionConfidence

InkRecognitionConfidence

列挙型
基底型i4

メンバー 3

名前10進16進
IRC_Strong00x0
IRC_Intermediate10x1
IRC_Poor20x2

各言語での定義

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

typedef enum InkRecognitionConfidence : int {
    IRC_Strong = 0,
    IRC_Intermediate = 1,
    IRC_Poor = 2
} InkRecognitionConfidence;
public enum InkRecognitionConfidence : int
{
    IRC_Strong = 0,
    IRC_Intermediate = 1,
    IRC_Poor = 2,
}
Public Enum InkRecognitionConfidence As Integer
    IRC_Strong = 0
    IRC_Intermediate = 1
    IRC_Poor = 2
End Enum
import enum

class InkRecognitionConfidence(enum.IntEnum):
    IRC_Strong = 0
    IRC_Intermediate = 1
    IRC_Poor = 2
// InkRecognitionConfidence
pub const IRC_Strong: i32 = 0;
pub const IRC_Intermediate: i32 = 1;
pub const IRC_Poor: i32 = 2;
// InkRecognitionConfidence
const (
	IRC_Strong int32 = 0
	IRC_Intermediate int32 = 1
	IRC_Poor int32 = 2
)
const
  IRC_Strong = 0;
  IRC_Intermediate = 1;
  IRC_Poor = 2;
// InkRecognitionConfidence
pub const IRC_Strong: i32 = 0;
pub const IRC_Intermediate: i32 = 1;
pub const IRC_Poor: i32 = 2;
const
  IRC_Strong* = 0
  IRC_Intermediate* = 1
  IRC_Poor* = 2
enum InkRecognitionConfidence : int {
    IRC_Strong = 0,
    IRC_Intermediate = 1,
    IRC_Poor = 2,
}
#define global IRC_Strong       0x0
#define global IRC_Intermediate 0x1
#define global IRC_Poor         0x2