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
3555
Format Summaries
posted
Is there a format property for summaries? The datatype of my columns are
int and I format them to currency, however when I add summaries it formats
it from the datatype of the columns, is there a way to override this?
Parents
No Data
Reply
  • 375
    Verified Answer
    posted

    Hi,

    you can format summaries by using the Format property.

    foreach (Infragistics.Win.UltraWinGrid.SummarySettings srow in Band.Summaries)

    {

    srow.DisplayFormat = "{0:#,##0}";

    }

    You will find the possibillities of the Format String in the NetAdvantage Help by searching for "Formtat Strings".

    Hope this will help.

    Kind regards,

    Ralf

Children
No Data