Spread for ASP.NET 7.0 Product Documentation
GetRowMerge Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : GetRowMerge Method


row
Row index

Glossary Item Box

Gets whether or how cells in a row on this sheet that have the same content are joined into a single cell across multiple columns.

Syntax

Visual Basic (Declaration) 
Public Function GetRowMerge( _
   ByVal row As Integer _
) As MergePolicy
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim row As Integer
Dim value As MergePolicy
 
value = instance.GetRowMerge(row)
C# 
public MergePolicy GetRowMerge( 
   int row
)

Parameters

row
Row index

Return Value

MergePolicy setting that specifies if and how cells in this row are automatically merged

Example

This example returns the merge policy for the model.
C#Copy Code
FpSpread1.ActiveSheetView.Cells[0, 0, 0, 3].Text = "Test";
FpSpread1.ActiveSheetView.SetRowMerge(0, FarPoint.Web.Spread.Model.MergePolicy.Always);

FarPoint.Web.Spread.Model.MergePolicy mp;
mp = FpSpread1.ActiveSheetView.GetRowMerge(0);
Response.Write(mp.ToString());
Visual BasicCopy Code
FpSpread1.ActiveSheetView.Cells(0, 0, 0, 3).Text = "Test"
FpSpread1.ActiveSheetView.SetRowMerge(0, FarPoint.Web.Spread.Model.MergePolicy.Always)

Dim mp As FarPoint.Web.Spread.Model.MergePolicy
mp = FpSpread1.ActiveSheetView.GetRowMerge(0)
Response.Write(mp.ToString())

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

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