ActiveReports Developer 7
MergeArea Constructor
See Also 
GrapeCity.ActiveReports.Export.Excel.v7 Assembly > GrapeCity.SpreadBuilder.Cells Namespace > MergeArea Structure : MergeArea Constructor

rowFrom
The top most row of the merged rectangular region.
rowTo
The bottom most row of the merged rectangular region.
columnFrom
The leftmost column of the merged rectangular region.
columnTo
The rightmost column of the merged rectangular region.

Glossary Item Box

Initializes a new instance of the MergeArea structure from the specified row and column to the specified row and column.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal rowFrom As System.UShort, _
   ByVal rowTo As System.UShort, _
   ByVal columnFrom As System.UShort, _
   ByVal columnTo As System.UShort _
)
C# 
public MergeArea( 
   System.ushort rowFrom,
   System.ushort rowTo,
   System.ushort columnFrom,
   System.ushort columnTo
)

Parameters

rowFrom
The top most row of the merged rectangular region.
rowTo
The bottom most row of the merged rectangular region.
columnFrom
The leftmost column of the merged rectangular region.
columnTo
The rightmost column of the merged rectangular region.

See Also