ASP.NET MVC コントロールヘルプ
PdfFormatItemEventArgs クラス
ファイル
wijmo.grid.pdf.js
モジュール
wijmo.grid.pdf

IFlexGridDrawSettings.formatItemコールバックの引数を表します。

コンストラクタ

プロパティ

メソッド

コンストラクタ

constructor

constructor(p: any /*_IGridPanel*/, rng: any /*_ICellRange*/, cell: HTMLElement, canvas: PdfPageArea, clientRect: Rect, contentRect: Rect, style: ICellStyle, getFormattedCell?: (), getTextRect?: ()): PdfFormatItemEventArgs

PdfFormatItemEventArgsクラスの新しいインスタンスを初期化します。

パラメーター
戻り値
PdfFormatItemEventArgs

プロパティ

cancelBorders

デフォルトのセル境界線の描画をキャンセルすることを示す値を取得または設定します。

boolean

canvas

カスタム描画を実行するキャンバスを取得します。

wijmo.pdf.PdfPageArea

cell

レンダリングされているグリッドセルを表す要素への参照を取得します。IFlexGridDrawSettings.customCellContentがtrueに設定されている場合は、書式設定されたグリッドセルを表す要素への参照を含みます。そうでない場合は、null値です。

HTMLElement

clientRect

レンダリングされているセルのクライアント四角形をキャンバス座標で取得します。

Rect

col

このイベントの影響を受けた列を取得します。

number

contentRect

レンダリングされているセルのコンテンツ四角形をキャンバス座標で取得します。

Rect

data

このイベントに関連するデータを取得または設定します。

any

panel

このイベントの影響を受けたGridPanelを取得します。

GridPanel

range

このイベントの影響を受けたCellRangeを取得します。

CellRange

row

このイベントの影響を受けた行を取得します。

number

style

レンダリングされているセルのスタイルを表すオブジェクトを取得します。IFlexGridDrawSettings.customCellContentがtrueに設定されている場合、スタイルはセルスタイルに基づいて決定されます。そうでない場合は、エクスポートされるセルの行タイプに基づいて、IFlexGridDrawSettings.stylesエクスポート設定の組み合わせが含まれます。

ICellStyle

tagContent

Gets or sets a reference to a marked structure content of the cell.

If user produces Tagged PDF and draws the cell content manually, then he can mark the cell content and return a reference to the structure content via this property. The returned item will be incorporated into the document's structure tree.

For example:

args.tagContent = args.canvas.beginTagContent(wijmo.pdf.PdfTagType.P);
args.canvas.drawText('Some text', x, y);
args.canvas.endTagContent();
IPdfTagContent

textTop

レンダリングされているセルのテキストの上位置をキャンバス座標で表す値を取得します。

number

メソッド

drawBackground

drawBackground(brush?: Color | string): void

指定されたブラシや色で背景を描画します。指定されていない場合はbackgroundColorプロパティの値でセルの背景を描画します。

パラメーター
  • brush: wijmo.pdf.PdfBrush | wijmo.Color | string Optional

    The brush or color to use.

戻り値
void

getFormattedCell

getFormattedCell(): HTMLElement

レンダリングされているグリッドセルを表す要素への参照を返します。このメソッドは、カスタム書式のエクスポートが無効だが、いくつかのセルでカスタムコンテンツをエクスポートする必要がある場合に便利です。

戻り値
HTMLElement