Spread Windows Forms 7.0 Product Documentation
SetImage Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SpreadView Class : SetImage Method


id
Unique identifier of the part of the user interface
url
Image object that contains the graphic image

Glossary Item Box

Sets the specified graphic for a specified part of the user interface.

Syntax

Visual Basic (Declaration) 
Public Sub SetImage( _
   ByVal id As Integer, _
   ByVal url As Image _
) 
Visual Basic (Usage)Copy Code
Dim instance As SpreadView
Dim id As Integer
Dim url As Image
 
instance.SetImage(id, url)
C# 
public void SetImage( 
   int id,
   Image url
)

Parameters

id
Unique identifier of the part of the user interface
url
Image object that contains the graphic image

Example

This example sets an image for the row selector.
C#Copy Code
fpSpread1.Sheets[0].ShowRowSelector = true;
FarPoint.Win.Spread.SpreadView wrkbk = fpSpread1.GetRootWorkbook();
wrkbk.SetImage(FarPoint.Win.Spread.SpreadView.RowSelectorImageDisabled, Image.FromFile("c:\\2.jpg"));
wrkbk.SetImage(FarPoint.Win.Spread.SpreadView.RowSelectorImage, Image.FromFile("c:\\1.jpg"));
Image indicator;
indicator = wrkbk.GetImage(14);
listBox1.Items.Add(indicator.ToString());
Visual BasicCopy Code
FpSpread1.Sheets(0).ShowRowSelector = True
Dim wrkbk As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook()
wrkbk.SetImage(FarPoint.Win.Spread.SpreadView.RowSelectorImageDisabled, Image.FromFile("c:\2.jpg"))
wrkbk.SetImage(FarPoint.Win.Spread.SpreadView.RowSelectorImage, Image.FromFile("C:\icon1.ico"))
Dim indicator As Image
indicator = wrkbk.GetImage(14)
ListBox1.Items.Add(indicator.ToString())

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.