MATLAB COMPILER RELEASE NOTES Guía de usuario Pagina 589

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 716
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 588
External Interfaces/API
20-45
invoke(target_sheet, 'Activate');
Activesheet = myApp.Activesheet;
cellname = 'B2';
Range = Activesheet.cells.Range(cellname,cellname);
the term Range is both a function on the MATLAB path and a constructor of the class
Range. MATLAB tries to execute the function range, which generates the error:
??? Error using ==> range
Too many input arguments.
Error in ==> MyScript at 8
Range = Activesheet.cells.Range(cellname,cellname);
To get the property value, use the get function.
For example:
Range = get(Activesheet.cells, 'Range', cellname, cellname);
Vista de pagina 588
1 2 ... 584 585 586 587 588 589 590 591 592 593 594 ... 715 716

Comentarios a estos manuales

Sin comentarios