Spread ASP.NET 6.0 Product Documentation
SetImage Method
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > FpSpread Class : SetImage Method


id
Integer identifier that specifies which image in the interface
url
URL of the image

Glossary Item Box

Sets the custom image in the specified part of the Spread component interface.

Syntax

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

Parameters

id
Integer identifier that specifies which image in the interface
url
URL of the image

Example

This example customizes the images for the expand and collapse signs in a hierarchy.
C#Copy Code
System.Data.DataSet ds = new System.Data.DataSet();
DataTable name; 
DataTable city; 
name = ds.Tables.Add("Customers"); 
name.Columns.AddRange(new DataColumn[] {new DataColumn("LastName", typeof(string)), new DataColumn("FirstName", typeof(string)), new DataColumn("ID", typeof(Int32))}); 
name.Rows.Add(new object[] {"Fielding", "William", 0}); 
name.Rows.Add(new object[] {"Williams", "Arthur", 1}); 
name.Rows.Add(new object[] {"Zuchini", "Theodore", 2}); 
city = ds.Tables.Add("City/State"); 
city.Columns.AddRange(new DataColumn[] {new DataColumn("City", typeof(string)), new DataColumn("Owner", typeof(Int32)), new DataColumn("State", typeof(string))}); 
city.Rows.Add(new object[] {"Atlanta", 0, "Georgia"}); 
city.Rows.Add(new object[] {"Boston", 1, "Mass."}); 
city.Rows.Add(new object[] {"Tampa", 2, "Fla."}); 
ds.Relations.Add("City/State", name.Columns["ID"], city.Columns["Owner"]); 

FpSpread1.DataSource = ds; 
FpSpread1.SetImage(FarPoint.Web.Spread.FpSpread.ExpandImage, "D:\\plus.bmp");
FpSpread1.SetImage(FarPoint.Web.Spread.FpSpread.CollapseImage, "D:\\minus.bmp");
Visual BasicCopy Code
Dim ds As New System.Data.DataSet
Dim name As DataTable
Dim city As DataTable
name = ds.Tables.Add("Customers")
name.Columns.AddRange(New DataColumn() {New DataColumn("LastName", Type.GetType("System.String")), New DataColumn("FirstName", Type.GetType("System.String")), New DataColumn("ID", Type.GetType("System.Int32"))})
name.Rows.Add(New Object() {"Fielding", "William", 0})
name.Rows.Add(New Object() {"Williams", "Arthur", 1})
name.Rows.Add(New Object() {"Zuchini", "Theodore", 2})
city = ds.Tables.Add("City/State")
city.Columns.AddRange(New DataColumn() {New DataColumn("City", Type.GetType("System.String")), New DataColumn("Owner", Type.GetType("System.Int32")), New DataColumn("State", Type.GetType("System.String"))})
city.Rows.Add(New Object() {"Atlanta", 0, "Georgia"})
city.Rows.Add(New Object() {"Boston", 1, "Mass."})
city.Rows.Add(New Object() {"Tampa", 2, "Fla."})
ds.Relations.Add("City/State", name.Columns("ID"), city.Columns("Owner"))

FpSpread1.DataSource = ds
FpSpread1.SetImage(FarPoint.Web.Spread.FpSpread.ExpandImage, "D:\plus.bmp")
FpSpread1.SetImage(FarPoint.Web.Spread.FpSpread.CollapseImage, "D:\minus.bmp")

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.