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

Gets or sets the value of the merged cell region.

Syntax

Visual Basic (Declaration) 
Public Property Value As Object
C# 
public object Value {get; set;}

Property Value

The value of the merged cell region.

Exceptions

ExceptionDescription
System.NotSupportedException The assigned value's type is not supported and can't be exported to Excel.
System.InvalidOperationException The value assigned is a . Instead, should be called on the Formula, passing in the cell.
System.InvalidOperationException The value assigned is a . Instead, the should be set to a region containing the cell.
System.InvalidOperationException The value assigned is a FormattedString which is the value another cell or merged cell region.
System.InvalidOperationException The value is assigned and this cell is part of an or WorksheetDataTable.

Remarks

The types supported for the value are:

  • System.Byte
  • System.SByte
  • System.Int16
  • System.Int64
  • System.UInt16
  • System.UInt64
  • System.UInt32
  • System.Int32
  • System.Single
  • System.Double
  • System.Boolean
  • System.Char
  • System.Enum
  • System.Decimal
  • System.DateTime
  • System.String
  • System.Text.StringBuilder
  • System.DBNull
  • ErrorValue
  • FormattedString

See Also