MATLAB MATLAB REPORT GENERATOR - RELEASE NOTES Guía de usuario Pagina 454

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 986
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 453
11 Functions – Alphabetical List
11-74
mlreportgen.dom.OrderedList.append
Package: mlreportgen.dom
Append content to ordered list
Syntax
listOut = append(orderedList,listItemObj)
listOut = append(orderedList,listItems)
listOut = append(orderedList,list)
customElementOut = append(orderedList,customElementObj)
Description
listOut = append(orderedList,listItemObj) appends a list item to an ordered
list.
listOut = append(orderedList,listItems) appends matrix or a cell array of list
items.
listOut = append(orderedList,list) appends an ordered or unordered list.
customElementOut = append(orderedList,customElementObj) appends a
custom element.
Examples
Append Three List Items
Add three items to a list.
import mlreportgen.dom.*;
myReport = Document('myDoc','html');
ol = OrderedList({'Item 1' 'Item 2'});
append(myReport,ol);
append(ol,{'Item 3' 'Item 4' 'Item 5'});
Vista de pagina 453
1 2 ... 449 450 451 452 453 454 455 456 457 458 459 ... 985 986

Comentarios a estos manuales

Sin comentarios