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

InkRecognitionConfidence

列挙型
基底型i4

メンバー 3

名前10進16進説明
IRC_Strong00x0最良の認識候補が正しいと認識エンジンが確信しています。
IRC_Intermediate10x1正しい結果が候補の一覧に含まれていると認識エンジンが確信しています。
IRC_Poor20x2結果が候補の一覧に含まれているとは認識エンジンが確信していません。

公式ドキュメント

認識エンジンが認識結果に対して持つ信頼度のレベルを示します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。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