Spread Windows Forms 6.0 Product Documentation
ReferenceStyle Property
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : ReferenceStyle Property


Glossary Item Box

Gets or sets the style for cell and range references in formulas in cells on this sheet.

Syntax

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

Property Value

ReferenceStyle setting that determines the cell reference style

Remarks

For more information about formulas, refer to the Formula Reference.

Example

This example sets the reference style used by the sheet to represent formulas.
C#Copy Code
fpSpread1.ActiveSheet.Iteration = true;
fpSpread1.ActiveSheet.SetValue(0, 1, 20);
fpSpread1.ActiveSheet.MaximumIterations = 5;
fpSpread1.ActiveSheet.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
fpSpread1.ActiveSheet.SetFormula(0, 0, "R1C2+R1C3");
fpSpread1.ActiveSheet.SetFormula(0, 2, "R1C1*3");
Visual BasicCopy Code
FpSpread1.ActiveSheet.Iteration = True
FpSpread1.ActiveSheet.SetValue(0, 1, 20)
FpSpread1.ActiveSheet.MaximumIterations = 5
FpSpread1.ActiveSheet.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1
FpSpread1.ActiveSheet.SetFormula(0, 0, "R1C2+R1C3")
FpSpread1.ActiveSheet.SetFormula(0, 2, "R1C1*3")

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

SheetView Class
SheetView Members

User-Task Documentation

Formula Reference

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