Link to home
Start Free TrialLog in
Avatar of tentavarious
tentavarious

asked on

changing font size within datagrid cell

Hello experts, i am using a webform with a datagrid.  Within the itemdatabound event of my datagrid i am trying to change the font size of text, within the datagrid cells.  I cant remeber how to change the font size below is what i tried.

     Private Sub dgactive_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles dgactive.ItemDataBound
        'handles the datagrid load
             If e.Item.ItemType <> ListItemType.Header And e.Item.ItemType <> ListItemType.Footer Then
       ' if some condition is met set the text of the cell
                e.Item.Cells(2).Text = "Active"
                e.Item.Cells(2).Font = New Font("Arial", 14)

                e.Item.Cells(2).ForeColor = Color.Green
        '    Else
                e.Item.Cells(2).Text = "Not Active"
                e.Item.Cells(2).ForeColor = Color.Red
        '    End If
        End If
    End Sub
Avatar of tusharashah
tusharashah

As Font will be in ReadOnly Property New Font will not work.. Try Like following:

Private Sub dgactive_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles dgactive.ItemDataBound
        'handles the datagrid load
             If e.Item.ItemType <> ListItemType.Header And e.Item.ItemType <> ListItemType.Footer Then
       ' if some condition is met set the text of the cell
                e.Item.Cells(2).Text = "Active"
                e.Item.Cells(2).Font.Name = "Arial"
                e.Item.Cells(2).Font.Size = 14

                e.Item.Cells(2).ForeColor = Color.Green
        '    Else
                e.Item.Cells(2).Text = "Not Active"
                e.Item.Cells(2).ForeColor = Color.Red
        '    End If
        End If
    End Sub

-tushar
Avatar of tentavarious

ASKER

Nope that doesnt work i get syntax errors "value type integer cannot be converted to System.Web.UI.Webcontrols.FontUnit
ASKER CERTIFIED SOLUTION
Avatar of tusharashah
tusharashah

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial