Identifies a single cell in a Worksheet.
Namespace: MindFusion.Spreadsheet
Assembly: MindFusion.Spreadsheet.WinForms
SyntaxC#
Copy Code
|
|---|
public class Cell : IInplaceEditable |
Visual Basic
Copy Code
|
|---|
Public Class Cell |
RemarksInstances 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.
ExampleThe following example demonstrates how to set the data of a cell in an existing worksheet:
C#
Copy Code
|
|---|
var cell = worksheet.Cells["B5"]; |
Visual Basic
Copy Code
|
|---|
Dim cell = worksheet.Cells("B5") |
Inheritance HierarchySystem.Object![]()
MindFusion.Spreadsheet.Cell
See Also