[]
        
(Showing Draft Content)

ReportViewer.ViewerOptions

Interface: ViewerOptions

ReportViewer.ViewerOptions

ビューワコントロールの設定。

Table of contents

プロパティ

Properties

ErrorHandler

Optional ErrorHandler: ErrorHandler

カスタムエラーハンドラ:

var options = {
	ErrorHandler: error => {
		console.error(error.message);
		return true;
		}
};

Defined in

node_modules/@grapecity/ar-js-viewer/dist/ar-js-viewer.d.ts:907


ExportsSettings

Optional ExportsSettings: Record<string, ExportSettings>

エクスポートパネルの初期設定:

var options = {
	ExportsSettings: {
		pdf: { ... },
		xlsx: { ... },
		html: { ... }
	}
};

Defined in

node_modules/@grapecity/ar-js-viewer/dist/ar-js-viewer.d.ts:922


PanelsLayout

Optional PanelsLayout: PanelsLocation

パネルバーのレイアウト。

Defined in

node_modules/@grapecity/ar-js-viewer/dist/ar-js-viewer.d.ts:929


PanelsLocation

Optional PanelsLocation: PanelsLocation

パネルの場所。

Defined in

node_modules/@grapecity/ar-js-viewer/dist/ar-js-viewer.d.ts:927


ParameterPanelLocation

Optional ParameterPanelLocation: PanelLocation

パラメータパネルの位置。

Defined in

node_modules/@grapecity/ar-js-viewer/dist/ar-js-viewer.d.ts:944


ToolbarLayout

Optional ToolbarLayout: ToolbarLayout

初期ツールバーレイアウト:

var options = {
 ToolbarLayout: {
		default: ['$navigation', '$refresh', '$zoom', '$fullscreen'],
		fullscreen: ['$refresh', '$print', '$fullscreen'],
		mobile: ['$refresh', '$navigation', '$split', '$fullscreen']}
 }
};

Defined in

node_modules/@grapecity/ar-js-viewer/dist/ar-js-viewer.d.ts:942


language

Optional language: string

ビューワの言語。

Defined in

node_modules/@grapecity/ar-js-viewer/dist/ar-js-viewer.d.ts:893