CodeGlyphX logo
CodeGlyphX

API Reference

Class

MatrixHtmlRenderOptions

Namespace CodeGlyphX.Rendering.Html
Assembly CodeGlyphX
Modifiers sealed

Options for rendering generic 2D matrices to HTML.

Inheritance

  • Object
  • MatrixHtmlRenderOptions

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Accepted by parameters

Constructors

Methods

public MatrixHtmlRenderOptions WithDarkColor(String color) #
Returns: MatrixHtmlRenderOptions

Sets the dark color (CSS value).

Parameters

color System.String requiredposition: 0
public MatrixHtmlRenderOptions WithEmailSafeTable(Boolean enabled = true) #
Returns: MatrixHtmlRenderOptions

Enables or disables email-safe HTML output.

Parameters

enabled System.Boolean = true optionalposition: 0
public MatrixHtmlRenderOptions WithLightColor(String color) #
Returns: MatrixHtmlRenderOptions

Sets the light color (CSS value).

Parameters

color System.String requiredposition: 0
public MatrixHtmlRenderOptions WithModuleSize(Int32 size) #
Returns: MatrixHtmlRenderOptions

Sets the module size in pixels.

Parameters

size System.Int32 requiredposition: 0
public MatrixHtmlRenderOptions WithQuietZone(Int32 quietZone) #
Returns: MatrixHtmlRenderOptions

Sets the quiet zone size in modules.

Parameters

quietZone System.Int32 requiredposition: 0

Properties

public Int32 ModuleSize { get; set; } #

Module size in pixels.

public Int32 QuietZone { get; set; } #

Quiet zone size in modules.

public String DarkColor { get; set; } #

Foreground color (CSS).

public String LightColor { get; set; } #

Background color (CSS).

public Boolean EmailSafeTable { get; set; } #

When true, renders HTML using email-safe tables.