Metodo InkAnalyzerBase.GetStrokeLanguageId
Aggiornamento: novembre 2007
Restituisce l'identificatore delle impostazioni locali per il tratto specificato.
Spazio dei nomi: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Sintassi
'Dichiarazione
Public Function GetStrokeLanguageId ( _
strokeId As Integer _
) As Integer
'Utilizzo
Dim instance As InkAnalyzerBase
Dim strokeId As Integer
Dim returnValue As Integer
returnValue = instance.GetStrokeLanguageId(strokeId)
public int GetStrokeLanguageId(
int strokeId
)
public:
int GetStrokeLanguageId(
int strokeId
)
public int GetStrokeLanguageId(
int strokeId
)
public function GetStrokeLanguageId(
strokeId : int
) : int
Parametri
- strokeId
Tipo: System.Int32
Identificatore del tratto.
Valore restituito
Tipo: System.Int32
Identificatore delle impostazioni locali per il tratto specificato.
Note
Le impostazioni locali del tratto vengono impostate quando si aggiunge il tratto tramite la chiamata del metodo AddStroke o AddStrokes. Per modificare le impostazioni locali del tratto, utilizzare SetStrokeLanguageId o SetStrokesLanguageId.
Esempi
Nell'esempio seguente viene controllato l'identificatore delle impostazioni locali di un tratto specificato e, se non lo è già, viene impostato su giapponese. L'oggetto InkAnalyzerBase, theInkAnalyzerBase, contiene i dati del tratto per l'identificatore di tratto, theStrokeId.
' If the specified stroke is not set to Japanese, 0x0011,
' Set the stroke's locale to Japanese.
Dim languageId As Integer = _
theInkAnalyzerBase.GetStrokeLanguageId(theStrokeId)
If &H11 <> languageId Then
theInkAnalyzerBase.SetStrokeLanguageId(theStrokeId, &H11)
End If
// If the specified stroke is not set to Japanese, 0x0011,
// Set the stroke's locale to Japanese.
int languageId = theInkAnalyzerBase.GetStrokeLanguageId(theStrokeId);
if (0x0011 != languageId)
{
theInkAnalyzerBase.SetStrokeLanguageId(theStrokeId, 0x0011);
}
Piattaforme
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.
Informazioni sulla versione
.NET Framework
Supportato in: 3.0
Vedere anche
Riferimenti
Spazio dei nomi System.Windows.Ink.AnalysisCore