ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Export.Excel Assembly / GrapeCity.SpreadBuilder.Cells Namespace / DDCell Class
Members Example

In This Topic
    DDCell Class
    In This Topic
    Represents a single cell in a spreadsheet.
    Object Model
    DDCell Class
    Syntax
    'Declaration
     
    Public Class DDCell 
    public class DDCell 
    Example
    'specify a font for a range of cells
    Dim sb As New Workbook()
    sb.Sheets.AddNew()
    Dim start As DDCell = sb.Sheets(0).Cell(0, 0)
    Dim end As DDCell = sb.Sheets(0).Cell(1, 2)
    sb.Sheets(0).Cells(start, [end]).FontName = "Comic sans ms"
    Workbook sb = new Workbook();
    sb.Sheets.AddNew();
    DDCell start = sb.Sheets[0].Cell(0, 0);
    DDCell end = sb.Sheets[0].Cell(1, 2);
    sb.Sheets[0].Cells(start, end).FontName = "Comic sans ms";
    Inheritance Hierarchy

    System.Object
       GrapeCity.SpreadBuilder.Cells.DDCell

    See Also