Spread for ASP.NET 10 Product Documentation
Images Property (SheetView)
Example 


Get the image collection
Syntax
'Declaration
 
Public ReadOnly Property Images As SpreadImageCollection
'Usage
 
Dim instance As SheetView
Dim value As SpreadImageCollection
 
value = instance.Images
public SpreadImageCollection Images {get;}
Example
This example adds an image to the sheet.
FarPoint.Web.Spread.SpreadImage image = new FarPoint.Web.Spread.SpreadImage("fplogo.png", 50, 50, 200, 150);
FpSpread1.ActiveSheetView.Images.Add(image);
Dim Image As New FarPoint.Web.Spread.SpreadImage("fplogo.png", 50, 50, 200, 150)
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

SheetView Class
SheetView Members

 

 


Copyright © GrapeCity, inc. All rights reserved.