'Declaration Public Function New( _ ByVal imageUrl As String, _ ByVal top As Integer, _ ByVal left As Integer, _ ByVal width As Integer, _ ByVal height As Integer _ )
Parameters
- imageUrl
- top
- left
- width
- height
'Declaration Public Function New( _ ByVal imageUrl As String, _ ByVal top As Integer, _ ByVal left As Integer, _ ByVal width As Integer, _ ByVal height As Integer _ )
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)