Gets or sets the spanned cells for the sheet.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim value As ISheetSpanModel
instance.SpanModel = value
value = instance.SpanModel |
Property Value
ISheetSpanModel object containing the spanned cells for the sheet
Remarks
Example
This example uses the SheetView object to create a cell span.
C# | Copy Code |
---|
FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView;
sv.SpanModel.Add(0,0,3,3); |
Visual Basic | Copy Code |
---|
Dim sv As FarPoint.Web.Spread.SheetView
sv=FpSpread1.ActiveSheetView
sv.SpanModel.Add(0,0,3,3) |
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also