Spread for ASP.NET 10 Product Documentation
ReferenceStyle Property (IExpressionSupport)
Example 


Gets or sets the cell reference style.
Syntax
'Declaration
 
Property ReferenceStyle As ReferenceStyle
'Usage
 
Dim instance As IExpressionSupport
Dim value As ReferenceStyle
 
instance.ReferenceStyle = value
 
value = instance.ReferenceStyle
ReferenceStyle ReferenceStyle {get; set;}

Property Value

ReferenceStyle setting that specifies the style of the cell reference
Example
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());
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 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

IExpressionSupport Interface
IExpressionSupport Members

 

 


Copyright © GrapeCity, inc. All rights reserved.