- 自從:ArcGIS 適用於 JavaScript 4.22 的 API
包含
customTextElements
name-value 對對象數組的對象,用於自定義打印服務中的每個打印模板。使用此屬性更新頁麵布局上自定義文本元素的文本。打印小部件調用 GPServer 上的
Get Layout Templates Info
任務以發現每個模板可能的customTextElements
值。任務名稱必須與Get Layout Templates Info
匹配,模板必須使用customTextElements
發布,值必須是字符串。在那裏找到的值將填充在Advanced options
下的打印小部件中。這些值可以在“打印”小部件 UI 中被覆蓋,或者以編程方式使用此屬性。要列出打印服務上可用的所有打印模板以查看使用customTextElements
發布的模板,請使用 effectiveTemplateCustomTextElements 屬性。例子:
const printWidget = new Print({ view: view, // specify your custom print service printServiceUrl: "", // `customTextElements` are defined per print template // this example has one template with `customTextElements` templateCustomTextElements: { // if there were more applicable templates, then we would // create another object with the template name containing // an array of more name-value pairs "Landscape_TextElements": [ // the possible values are defined in the print service { "headquarters": "Foxborough, Massachusetts" }, { "division": "AFC East" }, { "founded": "1959" } ] } });
基本信息
以下是所在類或對象的基本信息。
AMD:
require(["esri/widgets/Print"], (Print) => { /* code goes here */ });
ESM:
import Print from "@arcgis/core/widgets/Print";
類:
esri/widgets/Print
自從:用於 JavaScript 4.2 的 ArcGIS API
用法說明
Print.templateCustomTextElements
函數(或屬性)的定義如下:
相關用法
- JavaScript ArcGIS Print.templateOptions用法及代碼示例
- JavaScript ArcGIS Print.on用法及代碼示例
- JavaScript ArcGIS Print.allowedLayouts用法及代碼示例
- JavaScript ArcGIS Print.allowedFormats用法及代碼示例
- JavaScript ArcGIS Print.headingLevel用法及代碼示例
- JavaScript ArcGIS Print.classes用法及代碼示例
- JavaScript ArcGIS Print.container用法及代碼示例
- JavaScript ArcGIS Print.exportedLinks用法及代碼示例
- JavaScript ArcGIS Print.includeDefaultTemplates用法及代碼示例
- JavaScript ArcGIS Print.when用法及代碼示例
- JavaScript ArcGIS Print.portal用法及代碼示例
- JavaScript ArcGIS Print.FileLink用法及代碼示例
- JavaScript ArcGIS Print.visible用法及代碼示例
- JavaScript ArcGIS PrintTemplate.layoutOptions用法及代碼示例
- JavaScript ArcGIS PrintTask.url用法及代碼示例
- JavaScript ArcGIS Print complete事件用法及代碼示例
- JavaScript ArcGIS PrintTask.execute用法及代碼示例
- JavaScript ArcGIS Print submit事件用法及代碼示例
- JavaScript ArcGIS Print用法及代碼示例
- JavaScript Promise finally()用法及代碼示例
- JavaScript Promise.race()用法及代碼示例
- JavaScript ArcGIS PolygonDrawAction draw-complete事件用法及代碼示例
- JavaScript ArcGIS PathSymbol3DLayer用法及代碼示例
- JavaScript ArcGIS Popup.autoOpenEnabled用法及代碼示例
- JavaScript ArcGIS PointCloudLayer.apiKey用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 Print.templateCustomTextElements。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。