Spread ASP.NET 6.0 Product Documentation
ReferenceStyle Property
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Model Namespace > IExpressionSupport Interface : ReferenceStyle Property


Glossary Item Box

Gets or sets the cell reference style.

Syntax

Visual Basic (Declaration) 
Property ReferenceStyle As ReferenceStyle
Visual Basic (Usage)Copy Code
Dim instance As IExpressionSupport
Dim value As ReferenceStyle
 
instance.ReferenceStyle = value
 
value = instance.ReferenceStyle
C# 
ReferenceStyle ReferenceStyle {get; set;}

Property Value

ReferenceStyle setting that specifies the style of the cell reference

Example

C#Copy Code
FarPoint.Web.Spread.Model.IExpressionSupport ems; 
ems = (FarPoint.Web.Spread.Model.IExpressionSupport)FpSpread1.ActiveSheetView.DataModel; 
FpSpread1.ActiveSheetView.SetValue(0, 0, 5); 
FpSpread1.ActiveSheetView.SetValue(1, 0, 5); 
ems.ReferenceStyle = FarPoint.Web.Spread.Model.ReferenceStyle.R1C1; 
ems.SetFormula(2, 0, "SUM(R1C1, R2C1)"); 
Response.Write("The reference style is " + ems.ReferenceStyle.ToString());
Visual BasicCopy Code
Dim ems As FarPoint.Web.Spread.Model.IExpressionSupport
ems = FpSpread1.ActiveSheetView.DataModel
FpSpread1.ActiveSheetView.SetValue(0, 0, 5)
FpSpread1.ActiveSheetView.SetValue(1, 0, 5)
ems.ReferenceStyle = FarPoint.Web.Spread.Model.ReferenceStyle.R1C1
ems.SetFormula(2, 0, "SUM(R1C1, R2C1)")
Response.Write("The reference style is " & ems.ReferenceStyle.ToString())

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.