Spread Windows Forms 9.0 Product Documentation
MergePolicy Property (Row)
Example 


Gets or sets whether to automatically merge adjacent identical cells in this row.
Syntax
'Declaration
 
Public Property MergePolicy As MergePolicy
'Usage
 
Dim instance As Row
Dim value As MergePolicy
 
instance.MergePolicy = value
 
value = instance.MergePolicy
public MergePolicy MergePolicy {get; set;}

Property Value

MergePolicy setting of how to handle automatic merging
Remarks

To allow adjacent identical cells to be merged automatically, set this property.

For more information on automatic merging of cells, refer to Allowing Cells to Merge Automatically .

If you are using a specific cell type, be careful of restrictions for that cell type. For example, in order for automatic merging to work with CheckBox cells, the Value needs to be set to true or false instead of 1 or 0.

Example
FarPoint.Win.Spread.row r;
r = fpSpread1.ActiveSheet.Rows[0];
r.MergePolicy = FarPoint.Win.Spread.Model.MergePolicy.Always;
Dim r As FarPoint.Win.Spread.Row
r = FpSpread1.ActiveSheet.Rows(0)
r.MergePolicy = FarPoint.Win.Spread.Model.MergePolicy.Always
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

Row Class
Row Members
MergePolicy Property (Column Class)
MergePolicy Enum

User-Task Documentation

Allowing Cells to Merge Automatically

 

 


Copyright © GrapeCity, inc. All rights reserved.