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


row
Row index of the cell
column
Column index of the cell

Glossary Item Box

Gets the merged cell range at the specified cell.

Syntax

Visual Basic (Declaration) 
Public Function GetMergeCell( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As CellRange
Visual Basic (Usage)Copy Code
Dim instance As FpSpread
Dim row As Integer
Dim column As Integer
Dim value As CellRange
 
value = instance.GetMergeCell(row, column)
C# 
public CellRange GetMergeCell( 
   int row,
   int column
)

Parameters

row
Row index of the cell
column
Column index of the cell

Return Value

CellRange object containing the range of cells

Example

This example sets the border style of the focus rectangle.
C#Copy Code
FpSpread1.ActiveSheetView.SetColumnMerge(0, FarPoint.Web.Spread.Model.MergePolicy.Always); 
FpSpread1.ActiveSheetView.Cells[0, 0].Text = "FarPoint"; 
FpSpread1.ActiveSheetView.Cells[1, 0].Text = "FarPoint"; 
FpSpread1.ActiveSheetView.Cells[2, 0].Text = "FarPoint";

protected override void Render(System.Web.UI.HtmlTextWriter writer) 
{ 
    FarPoint.Web.Spread.Model.CellRange cr; 
    cr = FpSpread1.GetMergeCell(0, 0); 
    string msg = "The merged cell is in column " + cr.Column; 
    Response.Write("alert('" + msg + "')");
}
Visual BasicCopy Code
FpSpread1.ActiveSheetView.SetColumnMerge(0, FarPoint.Web.Spread.Model.MergePolicy.Always)
FpSpread1.ActiveSheetView.Cells(0, 0).Text = "FarPoint"
FpSpread1.ActiveSheetView.Cells(1, 0).Text = "FarPoint"
FpSpread1.ActiveSheetView.Cells(2, 0).Text = "FarPoint"

Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)
    Dim cr As FarPoint.Web.Spread.Model.CellRange
    cr = FpSpread1.GetMergeCell(0, 0)

    Dim msg As String = "The merged cell is in column " & cr.Column
    Response.Write("alert('" & msg & "')")
End Sub

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.