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
55
Hide formula bar in xamspreadsheet
posted

I need a grid control that implements the functionality of the xamspreadsheet control when it comes to cutting, pasting, inserting. I don't really need all the "spreadsheet" functions. I thought if I could hide the formula bar and the bottom sheet area I could get that. Otherwise I have to build all that in a xamdatagrid control. That is unless I'm missing something in xamdatagrid.

Suggestions?

Thx

Rick

Parents
No Data
Reply
  • 1500
    Verified Answer
    Offline posted
    Hello Rick,
    XamSpreadsheet offers manual configuration of its visual elements allowing their customization.
    The visibility of the formula bar can be set trough its 'IsFormulaBarVisible' property(true/false), and the tab sheet area can be accessed through the 'TabBarVisible' one. The latter one is a window option, so you must access it through it:
    xamSpreadSheet1.Workbook.WindowOptions.TabBarVisible = true/false;
    More information about the customization options of XamSpreadsheet control can be found on our website.
    Should you have any further questions, please let me know.
    Sincerely,
    Tihomir Tonev
    Associate Software Developer
    Infragistics
Children