asp.net.ph

DataControlField.ItemStyle Property

System.Web.UI.WebControls Namespace   DataControlField Class


.NET Framework version 2.0

Sets or retrieves the style properties for the individual columns in a DataControlField.

Syntax


Script DataControlField.ItemStyle.Property [ = enumValue ]

Property Value

A TableItemStyle object that defines the style properties for the individual columns in a DataControlField.

Remarks

Use the ItemStyle property to provide a custom style for the individual columns in types that derive from the DataControlField class. Common style attributes that can be set include forecolor, backcolor, font, and content alignment within the cell. Providing different row styles enhances the appearance of the DataControlField control.

The ItemStyle subproperties can be set declaratively using either of the following methods:

  • Include an attribute in the opening tag of the DataControlField control in the form ItemStyle-Property
    <asp:datacontrolfield ... 
       itemstyle-property=value
       ... >
    
    </asp:datacontrolfield>
  • Include a <ItemStyle> element between the opening and closing tags of the DataControlField control
    <asp:datacontrolfield ... >
    
       <itemstyle
          ... property definitions here />
    
    </asp:datacontrolfield>

The subproperties can also be set programmatically in the form ItemStyle.Property.

For a list of style properties that can be set, see the TableItemStyle class.

Example

The below snippet shows how to set the ItemStyle for a BoundField column in a GridView control at design time.

<asp:boundfield headertext = "Price"
   datafield = "UnitPrice"
   htmlencode=false
   dataformatstring = "{0:n2}"
   itemstyle-horizontalalign = "right" />

 Show me 

See Also

DataControlField Members   ControlStyle   FooterStyle   HeaderStyle Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph