ExcelCellSupportsType Method |
Gets a value indicating whether the objects of specified type can be assigned
to
ExcelCell.Value.
Namespace: SautinSoft.ExcelAssembly: SautinSoft.Excel (in SautinSoft.Excel.dll) Version: 2025.2.6
Syntaxpublic static bool SupportsType(
Object type
)
Public Shared Function SupportsType (
type As Object
) As Boolean
Parameters
- type Object
- Queried type.
Return Value
Booleantrue 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