Spread for ASP.NET 10 Product Documentation
Visible Property (SpreadImage)
Example 


Gets or sets whether to display the SpreadImage.
Syntax
'Declaration
 
Public Overrides Property Visible As Boolean
'Usage
 
Dim instance As SpreadImage
Dim value As Boolean
 
instance.Visible = value
 
value = instance.Visible
public override bool Visible {get; set;}
Example
This example sets the Visible property.
FarPoint.Web.Spread.SpreadImage Image = new FarPoint.Web.Spread.SpreadImage();
Image.CanSize = false;
Image.CanPrint = true;
Image.ID = "FirstImage";
Image.ImageUrl = "fplogo.png";
Image.Width = 200;
Image.Height = 150;
Image.Visible = true;
FpSpread1.ActiveSheetView.Images.Add(Image);
Dim Image As New FarPoint.Web.Spread.SpreadImage()
Image.CanSize = False
Image.CanPrint = True
Image.ID = "FirstImage"
Image.ImageUrl = "fplogo.png"
Image.Width = 200
Image.Height = 150
Image.Visible = True
FpSpread1.ActiveSheetView.Images.Add(Image)
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

SpreadImage Class
SpreadImage Members

 

 


Copyright © GrapeCity, inc. All rights reserved.