當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript view-editor.service.ViewEditorService類代碼示例

本文整理匯總了TypeScript中@dataservices/virtualization/view-editor/view-editor.service.ViewEditorService的典型用法代碼示例。如果您正苦於以下問題:TypeScript service.ViewEditorService類的具體用法?TypeScript service.ViewEditorService怎麽用?TypeScript service.ViewEditorService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了service.ViewEditorService類的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: constructor

 constructor( selectionService: SelectionService,
              editorService: ViewEditorService ) {
   this.selectionService = selectionService;
   this.editorService = editorService;
   this.editorService.setEditorVirtualization( selectionService.getSelectedVirtualization() );
 }
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:6,代碼來源:property-editor.component.ts

示例2: numberSelectedItems

 /**
  * Get the number of selected items
  * @return {number} the number of selected items
  */
 public get numberSelectedItems(): number {
   const selections = this.editorService.getSelection();
   if (selections) {
     return selections.length;
   }
   return 0;
 }
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:11,代碼來源:property-editor.component.ts

示例3: getFirstSelection

 /**
  * Get the first item in the selections
  * @return {SelectionItem} the first item in the selection list
  */
 public getFirstSelection(): SelectionItem {
   const selectedObj = new SelectionItem(this.editorService);
   const selections = this.editorService.getSelection();
   if (selections && selections.length > 0) {
     selectedObj.setSelection(selections[0]);
   }
   return selectedObj;
 }
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:12,代碼來源:property-editor.component.ts

示例4: virtualizationName

  /**
   * @returns {string} the name of the dataservice of the view being edited
   */
  public get virtualizationName(): string {
    const virtualization = this.editorService.getEditorVirtualization();

    if ( virtualization ) {
      return virtualization.getId();
    }

    // should always have a virtualization name so shouldn't get here
    return "< error >";
  }
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:13,代碼來源:view-editor-header.component.ts

示例5: readOnly

 /**
  * @returns {boolean} `true` if view being edited is readonly
  */
 public get readOnly(): boolean {
   return !this.editorService.getEditorView() || this.editorService.isReadOnly();
 }
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:6,代碼來源:view-editor-header.component.ts

示例6: rows

 /**
  * @returns {Message[]} the log messages
  */
 public get rows(): Message[] {
   return this.editorService.getMessages();
 }
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:6,代碼來源:message-log.component.ts

示例7: hasSelectedView

 /**
  * Determine whether the editor has a view currently selected
  *
  * @return {boolean} 'true' if has a view selection
  */
 public get hasSelectedView(): boolean {
   const selView = this.editorService.getEditorView();
   return (selView && selView !== null);
 }
開發者ID:tejones,項目名稱:beetle-studio,代碼行數:9,代碼來源:property-editor.component.ts


注:本文中的@dataservices/virtualization/view-editor/view-editor.service.ViewEditorService類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。