AnalysisAlternate.Strokes 속성
업데이트: 2007년 11월
현재 AnalysisAlternate 개체에서 참조하는 스트로크를 가져옵니다.
네임스페이스: System.Windows.Ink
어셈블리: IAWinFX(IAWinFX.dll)
구문
‘선언
Public ReadOnly Property Strokes As StrokeCollection
‘사용 방법
Dim instance As AnalysisAlternate
Dim value As StrokeCollection
value = instance.Strokes
public StrokeCollection Strokes { get; }
public:
property StrokeCollection^ Strokes {
StrokeCollection^ get ();
}
/** @property */
public StrokeCollection get_Strokes()
public function get Strokes () : StrokeCollection
속성 값
형식: System.Windows.Ink.StrokeCollection
이 AnalysisAlternate 개체에서 참조하는 StrokeCollection입니다.
설명
참고
InkAnalyzer.ModifyTopAlternate가 호출된 후 Strokes 속성에 액세스하려고 하면 InvalidOperationException이 throw됩니다.
예제
이 예제에서는 InkCanvas(theInkCanvas)의 모든 스트로크를 검은색으로 설정합니다(단, 이름이 selectedAlternate인 AnalysisAlternate의 스트로크는 녹색으로 설정). 그런 다음 선택한 AnalysisAlternate를 최상위 대체 항목으로 설정합니다.
' Set these strokes to green
For Each stroke As Stroke In theInkCanvas.Strokes
stroke.DrawingAttributes.Color = Colors.Black
Next stroke
For Each stroke As Stroke In selectedAlternate.Strokes
stroke.DrawingAttributes.Color = Colors.Green
Next stroke
' Use this as the top alternate
theInkAnalyzer.ModifyTopAlternate(selectedAlternate)
theResultsTextBox.Text = theInkAnalyzer.GetRecognizedString()
// Set these strokes to green
foreach (Stroke stroke in theInkCanvas.Strokes)
stroke.DrawingAttributes.Color = Colors.Black;
foreach (Stroke stroke in selectedAlternate.Strokes)
stroke.DrawingAttributes.Color = Colors.Green;
// Use this as the top alternate
theInkAnalyzer.ModifyTopAlternate(selectedAlternate);
theResultsTextBox.Text = theInkAnalyzer.GetRecognizedString();
플랫폼
Windows Vista
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원