Visual Basic (Declaration) | |
---|---|
Public Function New() |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As New ButtonCellType() |
C# | |
---|---|
public ButtonCellType() |
C# | Copy Code |
---|---|
FarPoint.Win.Spread.CellType.ButtonCellType bttncell = new FarPoint.Win.Spread.CellType.ButtonCellType(); bttncell.ButtonColor = Color.Cyan; bttncell.DarkColor = Color.DarkCyan; bttncell.LightColor = Color.AliceBlue; bttncell.ShadowSize = 3; bttncell.Text = "Click and hold..."; bttncell.TextDown = "...you can see how words go to multiple lines. Now let go."; bttncell.TextColor = Color.Green; bttncell.WordWrap = true; fpSpread1.Sheets[0].Cells[3,2].CellType = bttncell; |
Visual Basic | Copy Code |
---|---|
Dim bttncell As New FarPoint.Win.Spread.CellType.ButtonCellType() bttncell.ButtonColor = Color.Cyan bttncell.DarkColor = Color.DarkCyan bttncell.LightColor = Color.AliceBlue bttncell.ShadowSize = 3 bttncell.Text = "Click and hold..." bttncell.TextDown = "...you can see how words go to multiple lines. Now let go." bttncell.TextColor = Color.Green bttncell.WordWrap = True fpSpread1.Sheets(0).Cells(3,2).CellType = bttncell |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2