Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
660
Infragistics.Win.UltraWinGrid.ColumnStyle.Double with more decimal places - Urgent
posted

Hi All,

By default Im getting only 2 decimal places by using the following column style.

ColumnStyle.Double

I need to have 6 decimal places, how to get that..please do the needful bit urgent.

With Thanks & Reagrds

Amjath

Parents
No Data
Reply
  • 469350
    Offline posted


            private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            {
                UltraGridLayout layout = e.Layout;
                UltraGridBand band = layout.Bands[0];

                band.Columns["Double 1"].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Double;
                band.Columns["Double 1"].MaskInput = "nnnnnnnnn.nnnnnn";
            }

Children