TextRange.Load(Stream, String) Metoda

Definicja

Ładuje bieżące zaznaczenie w określonym formacie danych z określonego strumienia.

C#
public void Load(System.IO.Stream stream, string dataFormat);

Parametry

stream
Stream

Czytelny strumień zawierający dane do załadowania do bieżącego zaznaczenia.

dataFormat
String

Format danych do załadowania danych jako. Obecnie obsługiwane formaty danych to Rtf, Text, Xamli XamlPackage.

Wyjątki

Występuje, gdy stream wartość lub dataFormat ma wartość null.

Występuje, gdy określony format danych jest nieobsługiwany. Może również zostać podniesiona, jeśli zawartość załadowana z programu jest niezgodna z stream określonym formatem danych.

Przykłady

W poniższym przykładzie pokazano użycie Load metody .

C#
// This method accepts an input stream and a corresponding data format.  The method
// will attempt to load the input stream into a TextRange selection, apply Bold formatting
// to the selection, save the reformatted selection to an alternat stream, and return 
// the reformatted stream.  
Stream BoldFormatStream(Stream inputStream, string dataFormat)
{
    // A text container to read the stream into.
    FlowDocument workDoc = new FlowDocument();
    TextRange selection = new TextRange(workDoc.ContentStart, workDoc.ContentEnd);
    Stream outputStream = new MemoryStream();

    try
    {
        // Check for a valid data format, and then attempt to load the input stream
        // into the current selection.  Note that CanLoad ONLY checks whether dataFormat
        // is a currently supported data format for loading a TextRange.  It does not 
        // verify that the stream actually contains the specified format.  An exception 
        // may be raised when there is a mismatch between the specified data format and 
        // the data in the stream. 
        if (selection.CanLoad(dataFormat))
            selection.Load(inputStream, dataFormat);
    }
    catch (Exception e) { return outputStream; /* Load failure; return a null stream. */ }

    // Apply Bold formatting to the selection, if it is not empty.
    if (!selection.IsEmpty)
        selection.ApplyPropertyValue(TextElement.FontWeightProperty, FontWeights.Bold);

    // Save the formatted selection to a stream, and return the stream.
    if (selection.CanSave(dataFormat))
        selection.Save(outputStream, dataFormat);

    return outputStream;
}

Uwagi

Jeśli CanSeek element ma true wartość stream, zawartość zostanie załadowana od początku strumienia do końca strumienia. W przeciwnym razie zawartość będzie odczytywana z bieżącego Position do końca strumienia. Gdy ta metoda zwraca wartość , stream pozostaje otwarta, a bieżące położenie wewnątrz stream jest niezdefiniowane.

Operacja ładowania zastępuje bieżące zaznaczenie nowo załadowaną zawartością.

Dotyczy

Produkt Wersje
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

Zobacz też