RtfDomParser.RTFWriter.WriteRaw C# (CSharp) Method

WriteRaw() public method

write raw text
public WriteRaw ( string txt ) : void
txt string text
return void
        public void WriteRaw( string txt )
        {
            if( txt != null && txt.Length > 0 )
            {
                InnerWrite( txt );
            }
        }

Usage Example

Ejemplo n.º 1
0
 public void WriteRaw(string txt)
 {
     if (bolCollectionInfo == false)
     {
         if (txt != null)
         {
             myWriter.WriteRaw(txt);
         }
     }
 }
All Usage Examples Of RtfDomParser.RTFWriter::WriteRaw