Posted 4 April 2024, 1:37 pm EST - Updated 4 April 2024, 1:43 pm EST
How to hide bottom Grid Footer
Posted by: tyree.jackson on 4 April 2024, 1:37 pm EST
-
-
Posted 5 April 2024, 1:52 am EST
Hi Tyree,
The sheet tab and its navigation buttons are part of the tab strip of the FpSpread control. You can hide the sheet tabs by setting FpSpread’s TabStripPolicy to ‘Never’ as shown in the following code snippet:
fpSpread1.TabStripPolicy = FarPoint.Win.Spread.TabStripPolicy.Never;
Additionally, the sheet navigation buttons can be hidden by setting FpSpread’s TabStrip.ButtonPolicy to ‘Never’ as shown below:
fpSpread1.TabStrip.ButtonPolicy = FarPoint.Win.Spread.TabStripButtonPolicy.Never;
Kindly refer to the attached sample application for demonstation. [StatusBarVisible.zip]
Thanks & Regards,
Aastha -
Posted 5 April 2024, 1:56 am EST
You can set the property of fpspread ‘TabstripPolicy’ to ’Never‘ .
Fpspread1.TabstripPolicy=Never