Infragistics(R) NetAdvantage(R) WPF
AssociatedMergedCellsRegion Property
See Also  E-mail your feedback on this topic.
Infragistics.Documents.Excel Namespace > WorksheetCell Class : AssociatedMergedCellsRegion Property

Gets the merged cells region which contains the cell, or null if the cell is not merged.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property AssociatedMergedCellsRegion As WorksheetMergedCellsRegion
C# 
public WorksheetMergedCellsRegion AssociatedMergedCellsRegion {get;}

Property Value

The merged cells region which contains the cell, or null if the cell is not merged.

Remarks

Note: it is slightly faster to use the WorksheetRow.GetCellAssociatedMergedCellsRegion method, which does not create a WorksheetCell instance internally. However, if a reference to the WorksheetCell instance already exists, using this property is equivalent to using the WorksheetRow.GetCellAssociatedMergedCellsRegion method.

See Also