API Reference
Class
RenderedOutput
Represents rendered output (text or binary).
Inheritance
- Object
- RenderedOutput
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Method AztecCode.Render
- Method Barcode.Render
- Method Barcode.Render
- Method DataMatrixCode.Render
- Method Pdf417Code.Render
- Method Pdf417Code.RenderMacro
- Method QrCode.Render
- Method QrCode.Render
- Method QrCode.RenderAuto
- Method RenderedOutput.FromBinary
- Method RenderedOutput.FromText
Accepted by parameters
- Method OutputWriter.Write
- Method OutputWriter.Write
Methods
public static RenderedOutput FromBinary(OutputFormat format, Byte[] data) #Returns:
RenderedOutputCreates a binary output.
Parameters
- format CodeGlyphX.Rendering.OutputFormat
- data System.Byte[]
public static RenderedOutput FromText(OutputFormat format, String text, Encoding encoding = null) #Returns:
RenderedOutputCreates a text output (UTF-8 bytes).
Parameters
- format CodeGlyphX.Rendering.OutputFormat
- text System.String
- encoding System.Text.Encoding = null
public String GetText(Encoding encoding = null) #Returns:
StringReturns the text representation when this is a text output.
Parameters
- encoding System.Text.Encoding = null
Inherited Methods
Properties
public Boolean IsText { get; } #Returns true when this output is textual.