MATLAB COMPILER RELEASE NOTES Guide de l'utilisateur Page 589

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 716
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 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);
Vue de la page 588
1 2 ... 584 585 586 587 588 589 590 591 592 593 594 ... 715 716

Commentaires sur ces manuels

Pas de commentaire