Identifies a single cell in a Worksheet.
Namespace: MindFusion.Spreadsheet.Wpf
Assembly: MindFusion.Spreadsheet.Wpf
C#
![]() |
---|
public class Cell : IInplaceEditable |
Visual Basic
![]() |
---|
Public Class Cell |
Instances of this class can be accessed through the Cells collection of the Worksheet class. The Cell object can be used to get or set the data contained in the cell, to customize the appearance of the cell through its Style and to associate an annotation of a hyperlink with the cell.
The following example demonstrates how to set the data of a cell in an existing worksheet:
C#
![]() |
---|
var cell = worksheet.Cells["B5"]; |
Visual Basic
![]() |
---|
Dim cell = worksheet.Cells("B5") |
System.Object
MindFusion.Spreadsheet.Wpf.Cell