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


Glossary Item Box

Specifies the identifier for the image for frozen indicator.

Syntax

Visual Basic (Declaration) 
Public Const FrozenIndicatorImage As Integer
Visual Basic (Usage)Copy Code
Dim value As Integer
 
value = FpSpread.FrozenIndicatorImage
C# 
public const int FrozenIndicatorImage

Remarks

The value for the frozen indicator image is 4.

Example

This example shows an image in the header for the last frozen row.
C#Copy Code
FpSpread1.Sheets[0].FrozenRowCount = 1;
FpSpread1.SetImage(4, "happy.bmp");
FpSpread1.Sheets[0].ShowFrozenIndicator = FarPoint.Web.Spread.ShowFrozenIndicator.Row;
Visual BasicCopy Code
FpSpread1.Sheets(0).FrozenRowCount = 1
FpSpread1.SetImage(4, "happy.bmp")
FpSpread1.Sheets(0).ShowFrozenIndicator = FarPoint.Web.Spread.ShowFrozenIndicator.Row

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.