InkAnalyzerBase 생성자
업데이트: 2007년 11월
InkAnalyzerBase 클래스의 새 인스턴스를 초기화합니다.
네임스페이스: System.Windows.Ink.AnalysisCore
어셈블리: IACore(IACore.dll)
구문
‘선언
Public Sub New
‘사용 방법
Dim instance As New InkAnalyzerBase()
public InkAnalyzerBase()
public:
InkAnalyzerBase()
public InkAnalyzerBase()
public function InkAnalyzerBase()
설명
InkAnalyzerBase는 스트로크 패킷 데이터를 분석하며 잉크나 스트로크 개체와 직접 상호 작용하지는 않습니다.
예제
이 예제에서는 새 InkAnalyzerBase인 theInkAnalyzerBase를 초기화합니다. 그런 다음 AnalysisModes 속성을 설정하고 UpdateStrokesCacheBase 이벤트 처리기를 연결합니다.
' Create the ink analyzer and enable automatic reconciliation and
' automatic stroke cache cleanup, but not intermediate results.
Dim theInkAnalyzerBase As New System.Windows.Ink.AnalysisCore.InkAnalyzerBase()
theInkAnalyzerBase.AnalysisModes = _
System.Windows.Ink.AnalysisCore.AnalysisModes.AutomaticReconciliationEnabled _
Or System.Windows.Ink.AnalysisCore.AnalysisModes.StrokeCacheAutoCleanupEnabled
' Since automatic stroke cache cleanup is enabled, add an event
' handler for the UpdateStrokesCacheBase event.
AddHandler theInkAnalyzerBase.UpdateStrokesCacheBase, _
AddressOf theInkAnalyzerBase_UpdateStrokesCacheBase
// Create the ink analyzer and enable automatic reconciliation and
// automatic stroke cache cleanup, but not intermediate results.
System.Windows.Ink.AnalysisCore.InkAnalyzerBase theInkAnalyzerBase =
new System.Windows.Ink.AnalysisCore.InkAnalyzerBase();
theInkAnalyzerBase.AnalysisModes =
System.Windows.Ink.AnalysisCore.AnalysisModes.AutomaticReconciliationEnabled
| System.Windows.Ink.AnalysisCore.AnalysisModes.StrokeCacheAutoCleanupEnabled;
// Since automatic stroke cache cleanup is enabled, add an event
// handler for the UpdateStrokesCacheBase event.
theInkAnalyzerBase.UpdateStrokesCacheBase +=
new System.Windows.Ink.AnalysisCore.UpdateStrokesCacheBaseEventHandler(
theInkAnalyzerBase_UpdateStrokesCacheBase);
플랫폼
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원