constructor(p: any /*_IGridPanel*/, rng: any /*_ICellRange*/, cell: HTMLElement, canvas: PdfPageArea, clientRect: Rect, contentRect: Rect, style: ICellStyle, getFormattedCell?: (), getTextRect?: ()): PdfFormatItemEventArgs
PdfFormatItemEventArgsクラスの新しいインスタンスを初期化します。
GridPanel that contains the range.
Range of cells affected by the event.
Element that represents the grid cell to be rendered.
Canvas to perform the custom painting on.
Object that represents the client rectangle of the grid cell to be rendered in canvas coordinates.
Object that represents the content rectangle of the grid cell to be rendered in canvas coordinates.
Object that represents the style of the grid cell to be rendered.
Callback function that should return the grid cell when the getFormattedCell method is called.
Callback function that should return the text rectangle of the grid cell to be rendered in canvas coordinates.
カスタム描画を実行するキャンバスを取得します。
レンダリングされているグリッドセルを表す要素への参照を取得します。IFlexGridDrawSettings.customCellContentがtrueに設定されている場合は、書式設定されたグリッドセルを表す要素への参照を含みます。そうでない場合は、null値です。
このイベントに関連するデータを取得または設定します。
レンダリングされているセルのスタイルを表すオブジェクトを取得します。IFlexGridDrawSettings.customCellContentがtrueに設定されている場合、スタイルはセルスタイルに基づいて決定されます。そうでない場合は、エクスポートされるセルの行タイプに基づいて、IFlexGridDrawSettings.stylesエクスポート設定の組み合わせが含まれます。
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();
drawBackground(brush?: Color | string): void
指定されたブラシや色で背景を描画します。指定されていない場合はbackgroundColorプロパティの値でセルの背景を描画します。
The brush or color to use.
getFormattedCell(): HTMLElement
レンダリングされているグリッドセルを表す要素への参照を返します。このメソッドは、カスタム書式のエクスポートが無効だが、いくつかのセルでカスタムコンテンツをエクスポートする必要がある場合に便利です。
IFlexGridDrawSettings.formatItemコールバックの引数を表します。