TextRange.Save Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Geçerli seçimi belirtilen bir akışa belirtilen veri biçiminde kaydeder.
Aşırı Yüklemeler
Save(Stream, String) |
Geçerli seçimi belirtilen bir akışa belirtilen veri biçiminde kaydeder. |
Save(Stream, String, Boolean) |
Geçerli seçimi, özel TextElement nesnelerini koruma seçeneğiyle belirtilen veri biçiminde belirtilen bir akışa kaydeder. |
Save(Stream, String)
Geçerli seçimi belirtilen bir akışa belirtilen veri biçiminde kaydeder.
public:
void Save(System::IO::Stream ^ stream, System::String ^ dataFormat);
public void Save (System.IO.Stream stream, string dataFormat);
member this.Save : System.IO.Stream * string -> unit
Public Sub Save (stream As Stream, dataFormat As String)
Parametreler
- stream
- Stream
Geçerli seçimi kaydetmek için boş, yazılabilir bir akış.
- dataFormat
- String
Geçerli seçimin kaydedildiği veri biçimi. Şu anda desteklenen veri biçimleri Rtf, Text, Xamlve XamlPackage.
Özel durumlar
stream
veya dataFormat
null
.
Belirtilen veri biçimi desteklenmiyor.
-veya
stream
yüklenen içerik belirtilen veri biçimiyle eşleşmiyor.
Örnekler
Aşağıdaki örnekte Save yönteminin kullanımı gösterilmektedir.
// 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;
}
' 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.
Private Function BoldFormatStream(ByVal inputStream As Stream, ByVal dataFormat As String) As Stream
' A text container to read the stream into.
Dim workDoc As New FlowDocument()
Dim selection As New TextRange(workDoc.ContentStart, workDoc.ContentEnd)
Dim outputStream As Stream = 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) Then
selection.Load(inputStream, dataFormat)
End If
Catch e As Exception ' Load failure return a null stream.
Return outputStream
End Try
' Apply Bold formatting to the selection, if it is not empty.
If Not selection.IsEmpty Then
selection.ApplyPropertyValue(TextElement.FontWeightProperty, FontWeights.Bold)
End If
' Save the formatted selection to a stream, and return the stream.
If selection.CanSave(dataFormat) Then
selection.Save(outputStream, dataFormat)
End If
Return outputStream
End Function
Açıklamalar
Bu yöntem döndürdüğünde, stream
açık bırakılır ve stream
içindeki geçerli konum tanımlanmamıştır.
Kaydetme işleminin bir parçası olarak, geçerli seçimdeki içerik dataFormat
tarafından belirtilen veri biçimine dönüştürülebilir.
Ayrıca bkz.
Şunlara uygulanır
Save(Stream, String, Boolean)
Geçerli seçimi, özel TextElement nesnelerini koruma seçeneğiyle belirtilen veri biçiminde belirtilen bir akışa kaydeder.
public:
void Save(System::IO::Stream ^ stream, System::String ^ dataFormat, bool preserveTextElements);
public void Save (System.IO.Stream stream, string dataFormat, bool preserveTextElements);
member this.Save : System.IO.Stream * string * bool -> unit
Public Sub Save (stream As Stream, dataFormat As String, preserveTextElements As Boolean)
Parametreler
- stream
- Stream
Geçerli seçimi kaydetmek için boş, yazılabilir bir akış.
- dataFormat
- String
Geçerli seçimin kaydedildiği veri biçimi. Şu anda desteklenen veri biçimleri Rtf, Text, Xamlve XamlPackage.
- preserveTextElements
- Boolean
Özel TextElement nesnelerini korumak için true
; aksi takdirde, false
.
Özel durumlar
stream
veya dataFormat
null
olduğunda gerçekleşir.
Belirtilen veri biçimi desteklenmediğinde gerçekleşir.
stream
'dan yüklenen içerik belirtilen veri biçimiyle eşleşmiyorsa da tetiklenebilir.
Açıklamalar
preserveTextElements
false
olduğunda, özel TextElement nesneleri bilinen TextElement türleri olarak kaydedilir. Örneğin, Paragraph'den devralan Heading1
adlı özel bir TextElement oluşturduğunuzu varsayalım.
preserveTextElements
false
olarak ayarlanmış bu yöntemi çağırdığınızda, TextRange kaydedildiğinde Heading1
bir Paragraph dönüştürülür.
preserveTextElements
true
olarak ayarlanmış bu yöntemi çağırdığınızda Heading1
dönüştürülmeden kaydedilir. Özel metin öğelerini korumak için dataFormat
DataFormats.Xamlolarak ayarlanmalıdır.
Save(Stream, String, Boolean) .NET Framework sürüm 3.5'te kullanıma sunulmuştur. Daha fazla bilgi için bkz. Sürümleri ve Bağımlılıklar.