Spread for ASP.NET 8.0 Product Documentation
ButtonType Enumeration
Example Example 


Specifies how the buttons are displayed in the command bar of the Spread component.
Syntax
'Declaration
 
Public Enum ButtonType 
   Inherits System.Enum
'Usage
 
Dim instance As ButtonType
public enum ButtonType : System.Enum 
Members
MemberDescription
ImageButtonDisplays a button that displays an image (or icon) and responds to mouse clicks on the image
LinkButtonDisplays a button that looks like a hyperlink (with underlined text)
PushButtonDisplays a standard two-state command push button with text
Remarks

Use these settings with the ButtonType property to determine the display of buttons.

For more information about customizing the command bar and the buttons in the command bar, refer to Customizing the Command Bar.

Example
This example creates buttons of each type.
FpSpread1.ActiveSheetView.Cells[0,0].CellType=new FarPoint.Web.Spread.ButtonCellType("MyCommand",FarPoint.Web.Spread.ButtonType.LinkButton,"http://www.fpoint.com");
FpSpread1.ActiveSheetView.Cells[1,0].CellType=new FarPoint.Web.Spread.ButtonCellType("MyCommand",FarPoint.Web.Spread.ButtonType.PushButton,"Push");
FpSpread1.ActiveSheetView.Cells[2,0].CellType=new FarPoint.Web.Spread.ButtonCellType("MyCommand",FarPoint.Web.Spread.ButtonType.ImageButton,"img/edit-e.jpg");
FpSpread1.ActiveSheetView.Cells(0,0).CellType=New FarPoint.Web.Spread.ButtonCellType("MyCommand",FarPoint.Web.Spread.ButtonType.LinkButton,"http://www.fpoint.com")
FpSpread1.ActiveSheetView.Cells(1,0).CellType=New FarPoint.Web.Spread.ButtonCellType("MyCommand",FarPoint.Web.Spread.ButtonType.PushButton,"Push")
FpSpread1.ActiveSheetView.Cells(2,0).CellType=New FarPoint.Web.Spread.ButtonCellType("MyCommand",FarPoint.Web.Spread.ButtonType.ImageButton,"img/edit-e.jpg")
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         FarPoint.Web.Spread.ButtonType

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

FarPoint.Web.Spread Namespace
ButtonType Property
ButtonType Property
ButtonType Property

User-Task Documentation

Customizing the Command Bar Buttons

 

 


Copyright © GrapeCity, inc. All rights reserved.