You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

enum.tmpl.partial 1013 B

1234567891011121314151617181920212223242526272829303132333435
  1. {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
  2. {{>partials/class.header}}
  3. {{#children}}
  4. <h3 id="{{id}}">{{>partials/classSubtitle}}</h3>
  5. <table class="table table-bordered table-striped table-condensed">
  6. <thead>
  7. <tr>
  8. <th>{{__global.name}}</th>
  9. <th>{{__global.description}}</th>
  10. </tr>
  11. <thead>
  12. <tbody>
  13. {{#children}}
  14. <tr>
  15. <td id="{{id}}">{{name.0.value}}</td>
  16. <td>{{{summary}}}</td>
  17. </tr>
  18. {{/children}}
  19. </tbody>
  20. </table>
  21. {{/children}}
  22. {{#extensionMethods.0}}
  23. <h3 id="extensionmethods">{{__global.extensionMethods}}</h3>
  24. {{/extensionMethods.0}}
  25. {{#extensionMethods}}
  26. <div>
  27. {{#definition}}
  28. <xref uid="{{definition}}" fullName="{{fullName.0.value}}" name="{{nameWithType.0.value}}"/>
  29. {{/definition}}
  30. {{^definition}}
  31. <xref uid="{{uid}}" fullName="{{fullName.0.value}}" name="{{nameWithType.0.value}}"/>
  32. {{/definition}}
  33. </div>
  34. {{/extensionMethods}}