Horje
how to save rich text format in database using java Code Example
how to save rich text format in database using java
string rtfText; //string to save to db
TextRange tr = new TextRange(richTextBox.Document.ContentStart, richTextBox.Document.ContentEnd);
using (MemoryStream ms = new MemoryStream())
{
    tr.Save(ms, DataFormats.Rtf);
    rtfText = Encoding.ASCII.GetString(ms.ToArray());
}




Java

Related
registry Code Example registry Code Example
system out java quick Code Example system out java quick Code Example
what is delegation in java Code Example what is delegation in java Code Example
produces Code Example produces Code Example
zufallszahl java Code Example zufallszahl java Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11