Hi,
I am using win UltraGrid to display in a table format. I want set border top, right, left as null and only bottom border should be visible in row.
Does it possible in Infragistic Grid? Please help me ASAP
Thanks in Advance
Hi Hiren,
You would have to use a DrawFilter for this. I would recommend setting BorderStyleCell to None. Then you would use a DrawFilter and trap for the RowUIElement and you can set the BorderSides on the drawParams.
If you are not familiar with DrawFilters, check the Infragistics KB for articles and samples. Also, get the Infragistics UIElementViewer Utility.
Hi Mike,
First of all thanks for your prompt reply.
I got your suggestion and I really liked but one problem i am facing is line is not displaying. I wrote following code. Can you please check and tell me where i am making mistake?
uieRow is a object of RowUIElement
drawParams.DrawBorders(UIElementBorderStyle.Solid, Border3DSide.Bottom);
uieRow.DrawElement(ref drawParams);