Setting the Description and DetailedDescription attributes of MATLAB classes
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Built-in MATLAB classes have values for a Description and DetailedDescription attribute:
>> ?handle
ans =
meta.class handle
Package: meta
Properties:
Name: 'handle'
Description: 'Base class for handle classes'
DetailedDescription: ''
[snip]
Similarly, some methods and properties of built-in classes have the same attributes:
>> a = ?containers.Map;
>> a.PropertyList(1)
ans =
meta.property handle
Package: meta
Properties:
Name: 'Count'
Description: 'Number of pairs in the collection'
DetailedDescription: ''
[snip]
How can I set these attributes for my classes/methods/properties?
0 Commenti
Risposte (1)
Rowland
il 11 Dic 2012
It looks like the Description and DetailedDescription properties are not being used yet.
Vedere anche
Categorie
Scopri di più su Historical Contests in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!