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


row
Row index
value
MergePolicy enumeration setting

Glossary Item Box

Sets 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 Sub SetRowMerge( _
   ByVal row As Integer, _
   ByVal value As MergePolicy _
) 
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim row As Integer
Dim value As MergePolicy
 
instance.SetRowMerge(row, value)
C# 
public void SetRowMerge( 
   int row,
   MergePolicy value
)

Parameters

row
Row index
value
MergePolicy enumeration setting

Remarks

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

Example

This example merges all cells in a row that contain the same data.
C#Copy Code
FpSpread1.ActiveSheetView.Cells[0, 0, 0, 3].Text = "Test";
FpSpread1.ActiveSheetView.SetRowMerge(0, FarPoint.Web.Spread.Model.MergePolicy.Always);
Visual BasicCopy Code
FpSpread1.ActiveSheetView.Cells(0, 0, 0, 3).Text = "Test"
FpSpread1.ActiveSheetView.SetRowMerge(0, FarPoint.Web.Spread.Model.MergePolicy.Always)

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.