Spread ASP.NET 6.0 Product Documentation
SpanModel Property
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : SpanModel Property


Glossary Item Box

Gets or sets the spanned cells for the sheet.

Syntax

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

Property Value

ISheetSpanModel object containing the spanned cells for the sheet

Remarks

This property is available at run time only.

Example

This example uses the SheetView object to create a cell span.
C#Copy Code
FarPoint.Web.Spread.SheetViewsv=FpSpread1.ActiveSheetView;
sv.SpanModel.Add(0,0,3,3);
Visual BasicCopy Code
DimsvAsFarPoint.Web.Spread.SheetView
sv=FpSpread1.ActiveSheetView
sv.SpanModel.Add(0,0,3,3)

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.