다음을 통해 공유


InkAnalyzerBase.SetStrokesLanguageId 메서드

업데이트: 2007년 11월

지정된 스트로크의 로캘 식별자를 변경합니다.

네임스페이스:  System.Windows.Ink.AnalysisCore
어셈블리:  IACore(IACore.dll)

구문

‘선언
Public Sub SetStrokesLanguageId ( _
    strokeIds As Integer(), _
    languageId As Integer _
)
‘사용 방법
Dim instance As InkAnalyzerBase
Dim strokeIds As Integer()
Dim languageId As Integer

instance.SetStrokesLanguageId(strokeIds, _
    languageId)
public void SetStrokesLanguageId(
    int[] strokeIds,
    int languageId
)
public:
void SetStrokesLanguageId(
    array<int>^ strokeIds, 
    int languageId
)
public void SetStrokesLanguageId(
    int[] strokeIds,
    int languageId
)
public function SetStrokesLanguageId(
    strokeIds : int[], 
    languageId : int
)

매개 변수

  • strokeIds
    형식: array<System.Int32[]
    로캘 식별자를 할당할 스트로크의 스트로크 식별자가 들어 있는 배열입니다.
  • languageId
    형식: System.Int32
    지정된 스트로크에 할당할 언어 식별자입니다.

설명

스트로크의 로캘은 스트로크를 추가할 때 AddStroke 또는 AddStrokes를 호출하여 설정합니다. 현재 스트로크에 할당된 로캘을 가져오려면 GetStrokeLanguageId를 호출합니다.

지정된 스트로크가 같은 언어의 스트로크를 포함하는 분류되지 않은 잉크 노드로 이동합니다. 이러한 컨텍스트 노드가 없으면 분류되지 않은 새 잉크 노드가 만들어지고 여기에 스트로크가 추가됩니다. 분류되지 않은 잉크 노드는 Type 속성 값이 ContextNodeTypeBase.UnclassifiedInkContextNodeBase입니다.

이 메서드는 분류되지 않은 잉크 노드가 아닌 컨텍스트 노드의 스트로크를 이동하는 경우 잉크 분석기의 DirtyRegion에 스트로크의 경계 상자도 추가합니다.

languageId 매개 변수가 스트로크의 현재 언어 식별자와 일치하는 경우 이 메서드는 스트로크를 이동하지 않습니다.

strokeIds에 식별된 스트로크가 잉크 분석기에 연결되어 있지 않으면 이 메서드에서 식별자를 무시합니다.

strokeIds에 식별된 스트로크 중 잉크 분석기에 연결된 스트로크가 없으면 이 메서드는 잉크 분석기를 업데이트하지 않고 반환됩니다.

strokeIds가 nullNull 참조(Visual Basic의 경우 Nothing)이면 이 메서드는 System.ArgumentNullException을 throw합니다.

예제

다음 예제에서는 지정된 노드의 모든 스트로크에 대해 스트로크 형식을 StrokeType 값인 Writing으로 설정하고 스트로크 로캘을 프랑스어로 설정합니다. InkAnalyzerBase인 theInkAnalyzerBase에는 지정된 ContextNodeBase인 theNode가 포함됩니다.

' For all strokes in the specified node or one of its descendants,
' set the stroke type to Writing and the stroke locale to French.
Dim theStrokeIds As Integer() = theNode.GetStrokeIds()
If 0 < theStrokeIds.Length Then
    theInkAnalyzerBase.SetStrokesType( _
        theStrokeIds, System.Windows.Ink.AnalysisCore.StrokeType.Writing)
    theInkAnalyzerBase.SetStrokesLanguageId(theStrokeIds, &H40C)
End If
// For all strokes in the specified node or one of its descendants,
// set the stroke type to Writing and the stroke locale to French.
int[] theStrokeIds = theNode.GetStrokeIds();
if (0 < theStrokeIds.Length)
{
    theInkAnalyzerBase.SetStrokesType(theStrokeIds,
        System.Windows.Ink.AnalysisCore.StrokeType.Writing);
    theInkAnalyzerBase.SetStrokesLanguageId(theStrokeIds, 0x040c);
}

플랫폼

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

InkAnalyzerBase 클래스

InkAnalyzerBase 멤버

System.Windows.Ink.AnalysisCore 네임스페이스

InkAnalyzerBase.AddStroke

InkAnalyzerBase.AddStrokes

InkAnalyzerBase.GetStrokeLanguageId

InkAnalyzerBase.SetStrokeLanguageId