TemplateType

  • Thread starter Thread starter shapper
  • Start date Start date
S

shapper

Hello,

Does anyone knows if there is an Enumeration for ListView template
available types:

AlternatingItemTemplate, EditItemTemplate, EmptyDataTemplate,
EmptyItemTemplate ...

Thanks,

Miguel
 
lan enum makes no sense. templates implement the ITemplate interface, and
AlternatingItemTemplate, EditItemTemplate, etc are just properties on a
control that supports templates. to get the list for any control, use
reflection and list all properties with ITemplate as the type

-- bruce (sqlwork.com)
 
Back
Top