Spread Windows Forms 12.0 Product Documentation
PictureZoomEffect Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.CellType Namespace > ButtonCellType Class : PictureZoomEffect Property
Gets or sets whether the image has zoom effects.
Syntax
'Declaration
 
Public Property PictureZoomEffect As Boolean
'Usage
 
Dim instance As ButtonCellType
Dim value As Boolean
 
instance.PictureZoomEffect = value
 
value = instance.PictureZoomEffect
public bool PictureZoomEffect {get; set;}
Example
This example sets the PictureZoomEffect property.
FarPoint.Win.Spread.CellType.ButtonCellType butncell = new FarPoint.Win.Spread.CellType.ButtonCellType();
butncell.TwoState = true;
Image upimage;
Image dnimage;
upimage = Image.FromFile("C:\\SpreadWin\\cut.png");
dnimage = Image.FromFile("C:\\SpreadWin\\GreenCircle.png");
butncell.Picture = upimage;
butncell.PictureDown = dnimage;
butncell.TextAlign = FarPoint.Win.ButtonTextAlign.TextTopPictBottom;
butncell.Text = "Now up - Click";
butncell.TextDown = "Now down - Click";
butncell.PictureZoomEffect = true;
fpSpread1.Sheets[0].Cells[2, 2].CellType = butncell;
fpSpread1.AllowUserZoom = true;
Dim butncell As New FarPoint.Win.Spread.CellType.ButtonCellType()
butncell.TwoState = True
butncell.Picture = Image.FromFile("C:\\SpreadWin\\cut.png")
butncell.PictureDown = Image.FromFile("C:\\SpreadWin\\GreenCircle.png")
butncell.TextAlign = FarPoint.Win.ButtonTextAlign.TextTopPictBottom
butncell.Text = "Now up - Click"
butncell.TextDown = "Now down - Click"
butncell.PictureZoomEffect = True
fpSpread1.Sheets(0).Cells(2, 2).CellType = butncell
fpSpread1.AllowUserZoom = True
See Also

Reference

ButtonCellType Class
ButtonCellType Members