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

InkRecognizerCapabilities

列挙型
基底型i4

メンバー 22

名前10進16進
IRC_DontCare10x1
IRC_Object20x2
IRC_FreeInput40x4
IRC_LinedInput80x8
IRC_BoxedInput160x10
IRC_CharacterAutoCompletionInput320x20
IRC_RightAndDown640x40
IRC_LeftAndDown1280x80
IRC_DownAndLeft2560x100
IRC_DownAndRight5120x200
IRC_ArbitraryAngle10240x400
IRC_Lattice20480x800
IRC_AdviseInkChange40960x1000
IRC_StrokeReorder81920x2000
IRC_Personalizable163840x4000
IRC_PrefersArbitraryAngle327680x8000
IRC_PrefersParagraphBreaking655360x10000
IRC_PrefersSegmentation1310720x20000
IRC_Cursive2621440x40000
IRC_TextPrediction5242880x80000
IRC_Alpha10485760x100000
IRC_Beta20971520x200000

各言語での定義

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

typedef enum InkRecognizerCapabilities : int {
    IRC_DontCare = 1,
    IRC_Object = 2,
    IRC_FreeInput = 4,
    IRC_LinedInput = 8,
    IRC_BoxedInput = 16,
    IRC_CharacterAutoCompletionInput = 32,
    IRC_RightAndDown = 64,
    IRC_LeftAndDown = 128,
    IRC_DownAndLeft = 256,
    IRC_DownAndRight = 512,
    IRC_ArbitraryAngle = 1024,
    IRC_Lattice = 2048,
    IRC_AdviseInkChange = 4096,
    IRC_StrokeReorder = 8192,
    IRC_Personalizable = 16384,
    IRC_PrefersArbitraryAngle = 32768,
    IRC_PrefersParagraphBreaking = 65536,
    IRC_PrefersSegmentation = 131072,
    IRC_Cursive = 262144,
    IRC_TextPrediction = 524288,
    IRC_Alpha = 1048576,
    IRC_Beta = 2097152
} InkRecognizerCapabilities;
public enum InkRecognizerCapabilities : int
{
    IRC_DontCare = 1,
    IRC_Object = 2,
    IRC_FreeInput = 4,
    IRC_LinedInput = 8,
    IRC_BoxedInput = 16,
    IRC_CharacterAutoCompletionInput = 32,
    IRC_RightAndDown = 64,
    IRC_LeftAndDown = 128,
    IRC_DownAndLeft = 256,
    IRC_DownAndRight = 512,
    IRC_ArbitraryAngle = 1024,
    IRC_Lattice = 2048,
    IRC_AdviseInkChange = 4096,
    IRC_StrokeReorder = 8192,
    IRC_Personalizable = 16384,
    IRC_PrefersArbitraryAngle = 32768,
    IRC_PrefersParagraphBreaking = 65536,
    IRC_PrefersSegmentation = 131072,
    IRC_Cursive = 262144,
    IRC_TextPrediction = 524288,
    IRC_Alpha = 1048576,
    IRC_Beta = 2097152,
}
Public Enum InkRecognizerCapabilities As Integer
    IRC_DontCare = 1
    IRC_Object = 2
    IRC_FreeInput = 4
    IRC_LinedInput = 8
    IRC_BoxedInput = 16
    IRC_CharacterAutoCompletionInput = 32
    IRC_RightAndDown = 64
    IRC_LeftAndDown = 128
    IRC_DownAndLeft = 256
    IRC_DownAndRight = 512
    IRC_ArbitraryAngle = 1024
    IRC_Lattice = 2048
    IRC_AdviseInkChange = 4096
    IRC_StrokeReorder = 8192
    IRC_Personalizable = 16384
    IRC_PrefersArbitraryAngle = 32768
    IRC_PrefersParagraphBreaking = 65536
    IRC_PrefersSegmentation = 131072
    IRC_Cursive = 262144
    IRC_TextPrediction = 524288
    IRC_Alpha = 1048576
    IRC_Beta = 2097152
End Enum
import enum

class InkRecognizerCapabilities(enum.IntEnum):
    IRC_DontCare = 1
    IRC_Object = 2
    IRC_FreeInput = 4
    IRC_LinedInput = 8
    IRC_BoxedInput = 16
    IRC_CharacterAutoCompletionInput = 32
    IRC_RightAndDown = 64
    IRC_LeftAndDown = 128
    IRC_DownAndLeft = 256
    IRC_DownAndRight = 512
    IRC_ArbitraryAngle = 1024
    IRC_Lattice = 2048
    IRC_AdviseInkChange = 4096
    IRC_StrokeReorder = 8192
    IRC_Personalizable = 16384
    IRC_PrefersArbitraryAngle = 32768
    IRC_PrefersParagraphBreaking = 65536
    IRC_PrefersSegmentation = 131072
    IRC_Cursive = 262144
    IRC_TextPrediction = 524288
    IRC_Alpha = 1048576
    IRC_Beta = 2097152
// InkRecognizerCapabilities
pub const IRC_DontCare: i32 = 1;
pub const IRC_Object: i32 = 2;
pub const IRC_FreeInput: i32 = 4;
pub const IRC_LinedInput: i32 = 8;
pub const IRC_BoxedInput: i32 = 16;
pub const IRC_CharacterAutoCompletionInput: i32 = 32;
pub const IRC_RightAndDown: i32 = 64;
pub const IRC_LeftAndDown: i32 = 128;
pub const IRC_DownAndLeft: i32 = 256;
pub const IRC_DownAndRight: i32 = 512;
pub const IRC_ArbitraryAngle: i32 = 1024;
pub const IRC_Lattice: i32 = 2048;
pub const IRC_AdviseInkChange: i32 = 4096;
pub const IRC_StrokeReorder: i32 = 8192;
pub const IRC_Personalizable: i32 = 16384;
pub const IRC_PrefersArbitraryAngle: i32 = 32768;
pub const IRC_PrefersParagraphBreaking: i32 = 65536;
pub const IRC_PrefersSegmentation: i32 = 131072;
pub const IRC_Cursive: i32 = 262144;
pub const IRC_TextPrediction: i32 = 524288;
pub const IRC_Alpha: i32 = 1048576;
pub const IRC_Beta: i32 = 2097152;
// InkRecognizerCapabilities
const (
	IRC_DontCare int32 = 1
	IRC_Object int32 = 2
	IRC_FreeInput int32 = 4
	IRC_LinedInput int32 = 8
	IRC_BoxedInput int32 = 16
	IRC_CharacterAutoCompletionInput int32 = 32
	IRC_RightAndDown int32 = 64
	IRC_LeftAndDown int32 = 128
	IRC_DownAndLeft int32 = 256
	IRC_DownAndRight int32 = 512
	IRC_ArbitraryAngle int32 = 1024
	IRC_Lattice int32 = 2048
	IRC_AdviseInkChange int32 = 4096
	IRC_StrokeReorder int32 = 8192
	IRC_Personalizable int32 = 16384
	IRC_PrefersArbitraryAngle int32 = 32768
	IRC_PrefersParagraphBreaking int32 = 65536
	IRC_PrefersSegmentation int32 = 131072
	IRC_Cursive int32 = 262144
	IRC_TextPrediction int32 = 524288
	IRC_Alpha int32 = 1048576
	IRC_Beta int32 = 2097152
)
const
  IRC_DontCare = 1;
  IRC_Object = 2;
  IRC_FreeInput = 4;
  IRC_LinedInput = 8;
  IRC_BoxedInput = 16;
  IRC_CharacterAutoCompletionInput = 32;
  IRC_RightAndDown = 64;
  IRC_LeftAndDown = 128;
  IRC_DownAndLeft = 256;
  IRC_DownAndRight = 512;
  IRC_ArbitraryAngle = 1024;
  IRC_Lattice = 2048;
  IRC_AdviseInkChange = 4096;
  IRC_StrokeReorder = 8192;
  IRC_Personalizable = 16384;
  IRC_PrefersArbitraryAngle = 32768;
  IRC_PrefersParagraphBreaking = 65536;
  IRC_PrefersSegmentation = 131072;
  IRC_Cursive = 262144;
  IRC_TextPrediction = 524288;
  IRC_Alpha = 1048576;
  IRC_Beta = 2097152;
// InkRecognizerCapabilities
pub const IRC_DontCare: i32 = 1;
pub const IRC_Object: i32 = 2;
pub const IRC_FreeInput: i32 = 4;
pub const IRC_LinedInput: i32 = 8;
pub const IRC_BoxedInput: i32 = 16;
pub const IRC_CharacterAutoCompletionInput: i32 = 32;
pub const IRC_RightAndDown: i32 = 64;
pub const IRC_LeftAndDown: i32 = 128;
pub const IRC_DownAndLeft: i32 = 256;
pub const IRC_DownAndRight: i32 = 512;
pub const IRC_ArbitraryAngle: i32 = 1024;
pub const IRC_Lattice: i32 = 2048;
pub const IRC_AdviseInkChange: i32 = 4096;
pub const IRC_StrokeReorder: i32 = 8192;
pub const IRC_Personalizable: i32 = 16384;
pub const IRC_PrefersArbitraryAngle: i32 = 32768;
pub const IRC_PrefersParagraphBreaking: i32 = 65536;
pub const IRC_PrefersSegmentation: i32 = 131072;
pub const IRC_Cursive: i32 = 262144;
pub const IRC_TextPrediction: i32 = 524288;
pub const IRC_Alpha: i32 = 1048576;
pub const IRC_Beta: i32 = 2097152;
const
  IRC_DontCare* = 1
  IRC_Object* = 2
  IRC_FreeInput* = 4
  IRC_LinedInput* = 8
  IRC_BoxedInput* = 16
  IRC_CharacterAutoCompletionInput* = 32
  IRC_RightAndDown* = 64
  IRC_LeftAndDown* = 128
  IRC_DownAndLeft* = 256
  IRC_DownAndRight* = 512
  IRC_ArbitraryAngle* = 1024
  IRC_Lattice* = 2048
  IRC_AdviseInkChange* = 4096
  IRC_StrokeReorder* = 8192
  IRC_Personalizable* = 16384
  IRC_PrefersArbitraryAngle* = 32768
  IRC_PrefersParagraphBreaking* = 65536
  IRC_PrefersSegmentation* = 131072
  IRC_Cursive* = 262144
  IRC_TextPrediction* = 524288
  IRC_Alpha* = 1048576
  IRC_Beta* = 2097152
enum InkRecognizerCapabilities : int {
    IRC_DontCare = 1,
    IRC_Object = 2,
    IRC_FreeInput = 4,
    IRC_LinedInput = 8,
    IRC_BoxedInput = 16,
    IRC_CharacterAutoCompletionInput = 32,
    IRC_RightAndDown = 64,
    IRC_LeftAndDown = 128,
    IRC_DownAndLeft = 256,
    IRC_DownAndRight = 512,
    IRC_ArbitraryAngle = 1024,
    IRC_Lattice = 2048,
    IRC_AdviseInkChange = 4096,
    IRC_StrokeReorder = 8192,
    IRC_Personalizable = 16384,
    IRC_PrefersArbitraryAngle = 32768,
    IRC_PrefersParagraphBreaking = 65536,
    IRC_PrefersSegmentation = 131072,
    IRC_Cursive = 262144,
    IRC_TextPrediction = 524288,
    IRC_Alpha = 1048576,
    IRC_Beta = 2097152,
}
#define global IRC_DontCare                     0x1
#define global IRC_Object                       0x2
#define global IRC_FreeInput                    0x4
#define global IRC_LinedInput                   0x8
#define global IRC_BoxedInput                   0x10
#define global IRC_CharacterAutoCompletionInput 0x20
#define global IRC_RightAndDown                 0x40
#define global IRC_LeftAndDown                  0x80
#define global IRC_DownAndLeft                  0x100
#define global IRC_DownAndRight                 0x200
#define global IRC_ArbitraryAngle               0x400
#define global IRC_Lattice                      0x800
#define global IRC_AdviseInkChange              0x1000
#define global IRC_StrokeReorder                0x2000
#define global IRC_Personalizable               0x4000
#define global IRC_PrefersArbitraryAngle        0x8000
#define global IRC_PrefersParagraphBreaking     0x10000
#define global IRC_PrefersSegmentation          0x20000
#define global IRC_Cursive                      0x40000
#define global IRC_TextPrediction               0x80000
#define global IRC_Alpha                        0x100000
#define global IRC_Beta                         0x200000