[]
You can customize the display of the command buttons in the command bar by hiding any or all of the command buttons.
To hide a command button, set the Visible property to false in the event that creates the button.
Use the CreateButton event to hide certain buttons.
This example uses code to hide the print icon by adding the Visible property to the CreateButton event. The result is shown in this figure.
private void FpSpread1_CreateButton(object sender, FarPoint.Web.Spread.CreateButtonEventArgs e)
{
if (e.Command == "Print")
{
e.Visible = false;
}
}
Private Sub FpSpread1CreateButton(ByVal sender As Object, ByVal e As FarPoint.Web.Spread.CreateButtonEventArgs) Handles FpSpread1.CreateButton
If e.Command = "Print" Then
e.Visible = False
End If
End Sub