Click or drag to resize

ExcelCellSupportsType Method

Gets a value indicating whether the objects of specified type can be assigned to ExcelCell.Value.

Namespace: SautinSoft.Excel
Assembly: SautinSoft.Excel (in SautinSoft.Excel.dll) Version: 2025.2.6
Syntax
public static bool SupportsType(
	Object type
)

Parameters

type  Object
Queried type.

Return Value

Boolean
true if the specified type is supported; otherwise, false.
Remarks
Currently supported types are:
  • System.DBNull
  • System.Byte
  • System.SByte
  • System.Int16
  • System.UInt16
  • System.Int64
  • System.UInt64
  • System.UInt32
  • System.Int32
  • System.Single
  • System.Double
  • System.Boolean
  • System.Char
  • System.Text.StringBuilder
  • System.Decimal
  • System.DateTime
  • System.String
  • SautinSoft.Excel.RichText
See Also