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


column
Column index

Glossary Item Box

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

Syntax

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

Parameters

column
Column index

Return Value

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

Remarks

Cells with the same content are automatically merged if the merge policy is set to allow it. To span cell manually refer to the AddSpanCell method, etc.

Example

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

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

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

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.