Exemplo n.º 1
0
 public RenderStream(IDocument document)
 {
     Document         = document;
     RenderStreamType = RenderStreamType.Document;
 }
Exemplo n.º 2
0
 public RenderStream(SharpDX.Direct2D1.Bitmap bitmap)
 {
     Bitmap           = bitmap;
     RenderStreamType = RenderStreamType.Bitmap;
 }
Exemplo n.º 3
0
 public RenderStream(string value)
 {
     Value            = value;
     RenderStreamType = RenderStreamType.Internal;
 }
Exemplo n.º 4
0
 public RenderStream()
 {
     RenderStreamType = RenderStreamType.Invalid;
 }