Condividi tramite


Classe WritingRegionNode

Aggiornamento: novembre 2007

Rappresenta un gruppo di paragrafi con orientamento simile.

Spazio dei nomi:  System.Windows.Ink
Assembly:  IAWinFX (in IAWinFX.dll)

Sintassi

'Dichiarazione
Public NotInheritable Class WritingRegionNode _
    Inherits ContextNode
'Utilizzo
Dim instance As WritingRegionNode
public sealed class WritingRegionNode : ContextNode
public ref class WritingRegionNode sealed : public ContextNode
public final class WritingRegionNode extends ContextNode
public final class WritingRegionNode extends ContextNode

Note

Un'area di scrittura ha un solo ordine di lettura, ad esempio dall'alto verso il basso.

Nello stesso documento possono coesistere diverse aree di scrittura sulla stessa pagina se hanno orientamenti diversi. Ad esempio, se un utente scrive delle note principalmente in orizzontale, ma anche alcune parole in diagonale in un angolo, per queste ultime viene considerato un orientamento diverso. Per il testo in diagonale viene creato un nuovo oggetto WritingRegion.

Un oggetto WritingRegionNode può contenere, in numero illimitato, i seguenti tipi di elementi figlio:

Esempi

Nell'esempio seguente viene utilizzato il metodo WritingRegionNode per contrassegnare i tratti che corrispondono al testo selezionato. Nel codice di esempio si presuppone che la proprietà Text dell'oggetto TextBox denominato theResultsTextBox sia impostata sul valore restituito dal metodo GetRecognizedString. Inoltre, si presuppone che l'utente abbia selezionato un testo dall'oggetto theResultsTextBox e che sia disponibile un oggetto InkAnalyzer denominato theInkAnalyzer.

' Find out what's been selected in the text box
Dim selectionStart As Integer = selectedResultsTextBox.SelectionStart
Dim selectionLength As Integer = selectedResultsTextBox.SelectionLength

' Return if no text is selected.
If selectionLength = 0 Then
    Return
End If 
' Get the nodes that correspond to that range
Dim selectedRegionSubNodes As ContextNodeCollection = writingRegion.GetNodesFromTextRange(selectionStart, selectionLength)


' Use the new start and length value to update the
' selection in the TextBox
selectedResultsTextBox.SelectionStart = selectionStart
selectedResultsTextBox.SelectionLength = selectionLength

' First, set all strokes to black
For Each stroke As Stroke In writingRegion.Strokes
    stroke.DrawingAttributes.Color = Colors.Black
Next stroke

' Next, set all selected sub nodes to red
For Each node As ContextNode In selectedRegionSubNodes
    For Each stroke As Stroke In node.Strokes
        stroke.DrawingAttributes.Color = Colors.Red
    Next stroke
Next node
// Find out what's been selected in the text box
int selectionStart = selectedResultsTextBox.SelectionStart;
int selectionLength = selectedResultsTextBox.SelectionLength;

// Return if no text is selected.
if (selectionLength == 0)
    return;

// Get the nodes that correspond to that range
ContextNodeCollection selectedRegionSubNodes =
        writingRegion.GetNodesFromTextRange(ref selectionStart, ref selectionLength);


// Use the new start and length value to update the
// selection in the TextBox
selectedResultsTextBox.SelectionStart = selectionStart;
selectedResultsTextBox.SelectionLength = selectionLength;

// First, set all strokes to black
foreach (Stroke stroke in writingRegion.Strokes)
    stroke.DrawingAttributes.Color = Colors.Black;
// Next, set all selected sub nodes to red
foreach (ContextNode node in selectedRegionSubNodes)
{
    foreach (Stroke stroke in node.Strokes)
    {
        stroke.DrawingAttributes.Color = Colors.Red;
    }
}

Gerarchia di ereditarietà

System.Object
  System.Windows.Ink.ContextNode
    System.Windows.Ink.WritingRegionNode

Codice thread safe

Qualsiasi membro static (Shared in Visual Basic) pubblico di questo tipo è thread-safe. I membri di istanza non sono garantiti come thread-safe.

Piattaforme

Windows Vista

.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

Membri WritingRegionNode

Spazio dei nomi System.Windows.Ink