menu

Document Processing

PdfGridBuiltinStyle Class - C# PDF Library API Reference | Syncfusion

    Show / Hide Table of Contents

    PdfGridBuiltinStyle Class

    Specifies PdfGrid built-in table styles.

    Inheritance
    System.Object
    PdfGridBuiltinStyle
    Namespace: Syncfusion.Pdf
    Assembly: Syncfusion.Pdf.Base.dll
    Syntax
    public sealed class PdfGridBuiltinStyle : Enum
    Examples
    //Create a new PDF document.
    PdfDocument doc = new PdfDocument();
    //Add a page.
    PdfPage page = doc.Pages.Add();
    //Create a new PDF grid instance.
    PdfGrid table = new PdfGrid();
    //Create a DataTable.
    DataTable dataTable = new DataTable();
    //Add columns to the DataTable
    dataTable.Columns.Add("ID");
    dataTable.Columns.Add("Name");
    //Add rows to the DataTable.
    dataTable.Rows.Add(new object[] { "E01", "Clay" });
    dataTable.Rows.Add(new object[] { "E02", "Thomas" });
    dataTable.Rows.Add(new object[] { "E03", "George" });
    dataTable.Rows.Add(new object[] { "E04", "Stefan" });
    dataTable.Rows.Add(new object[] { "E05", "Mathew" });
    //Assign data source.
    table.DataSource = dataTable;
    //Create PDF grid build style settings instance.
    PdfGridBuiltinStyleSettings settings = new PdfGridBuiltinStyleSettings();
    settings.ApplyStyleForBandedColumns = true;
    settings.ApplyStyleForBandedRows = true;
    settings.ApplyStyleForFirstColumn = true;
    settings.ApplyStyleForHeaderRow = true;
    settings.ApplyStyleForLastColumn = true;
    settings.ApplyStyleForLastRow = true;
    //Apply built-in table style
    table.ApplyBuiltinStyle(PdfGridBuiltinStyle.GridTable3, settings);           
    //Draw grid to the page of PDF document.
    table.Draw(page, new PointF(10, 10));
    //Save the document.
    doc.Save("Output.pdf");
    //close the document
    doc.Close(true);
    'Create a new PDF document.
    Dim doc As New PdfDocument()
    'Add a page.
    Dim page As PdfPage = doc.Pages.Add()
    'Create a new PDF grid instance.
    Dim table As New PdfGrid()
    'Create a DataTable.
    Dim dataTable As New DataTable()
    'Add columns to the DataTable
    dataTable.Columns.Add("ID")
    dataTable.Columns.Add("Name")
    'Add rows to the DataTable.
    dataTable.Rows.Add(New Object() { "E01", "Clay"})
    dataTable.Rows.Add(New Object() { "E02", "Thomas"})
    dataTable.Rows.Add(New Object() { "E03", "George"})
    dataTable.Rows.Add(New Object() { "E04", "Stefan"})
    dataTable.Rows.Add(New Object() { "E05", "Mathew"})
    'Assign data source.
    table.DataSource = dataTable
    'Create PDF grid build style settings instance.
    Dim settings As New PdfGridBuiltinStyleSettings()
    settings.ApplyStyleForBandedColumns = True
    settings.ApplyStyleForBandedRows = True
    settings.ApplyStyleForFirstColumn = True
    settings.ApplyStyleForHeaderRow = True
    settings.ApplyStyleForLastColumn = True
    settings.ApplyStyleForLastRow = True 
    Apply built-in table style
    table.ApplyBuiltinStyle(PdfGridBuiltinStyle.GridTable3, settings)
    'Draw grid to the page of PDF document.
    table.Draw(page, New PointF(10, 10))
    'Save the document.
    doc.Save("Output.pdf")
    'close the document 
    doc.Close(True)

    Fields

    GridTable1Light

    Specifies the grid to render Grid Table 1 Light style.

    Declaration
    public const PdfGridBuiltinStyle GridTable1Light
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable1LightAccent1

    Specifies the grid to render Grid Table 1 Light - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable1LightAccent1
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable1LightAccent2

    Specifies the grid to render Grid Table 1 Light - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable1LightAccent2
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable1LightAccent3

    Specifies the grid to render Grid Table 1 Light - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable1LightAccent3
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable1LightAccent4

    Specifies the grid to render Grid Table 1 Light - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable1LightAccent4
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable1LightAccent5

    Specifies the grid to render Grid Table 1 Light - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable1LightAccent5
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable1LightAccent6

    Specifies the grid to render Grid Table 1 Light - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable1LightAccent6
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable2

    Specifies the grid to render Grid Table 2 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable2
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable2Accent1

    Specifies the grid to render Grid Table 2 - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable2Accent1
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable2Accent2

    Specifies the grid to render Grid Table 2 - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable2Accent2
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable2Accent3

    Specifies the grid to render Grid Table 2 - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable2Accent3
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable2Accent4

    Specifies the grid to render Grid Table 2 - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable2Accent4
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable2Accent5

    Specifies the grid to render Grid Table 2 - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable2Accent5
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable2Accent6

    Specifies the grid to render Grid Table 2 - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable2Accent6
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable3

    Specifies the grid to render Grid Table 3 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable3
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable3Accent1

    Specifies the grid to render Grid Table 3 - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable3Accent1
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable3Accent2

    Specifies the grid to render Grid Table 3 - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable3Accent2
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable3Accent3

    Specifies the grid to render Grid Table 3 - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable3Accent3
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable3Accent4

    Specifies the grid to render Grid Table 3 - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable3Accent4
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable3Accent5

    Specifies the grid to render Grid Table 3 - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable3Accent5
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable3Accent6

    Specifies the grid to render Grid Table 3 - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable3Accent6
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable4

    Specifies the grid to render Grid Table 4 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable4
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable4Accent1

    Specifies the grid to render Grid Table 4 - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable4Accent1
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable4Accent2

    Specifies the grid to render Grid Table 4 - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable4Accent2
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable4Accent3

    Specifies the grid to render Grid Table 4 - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable4Accent3
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable4Accent4

    Specifies the grid to render Grid Table 4 - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable4Accent4
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable4Accent5

    Specifies the grid to render Grid Table 4 - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable4Accent5
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable4Accent6

    Specifies the grid to render Grid Table 4 - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable4Accent6
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable5Dark

    Specifies the grid to render Grid Table 5 Dark style.

    Declaration
    public const PdfGridBuiltinStyle GridTable5Dark
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable5DarkAccent1

    Specifies the grid to render Grid Table 5 Dark - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable5DarkAccent1
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable5DarkAccent2

    Specifies the grid to render Grid Table 5 Dark - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable5DarkAccent2
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable5DarkAccent3

    Specifies the grid to render Grid Table 5 Dark - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable5DarkAccent3
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable5DarkAccent4

    Specifies the grid to render Grid Table 5 Dark - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable5DarkAccent4
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable5DarkAccent5

    Specifies the grid to render Grid Table 5 Dark - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable5DarkAccent5
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable5DarkAccent6

    Specifies the grid to render Grid Table 5 Dark - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable5DarkAccent6
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable6Colorful

    Specifies the grid to render Grid Table 6 Colorful style.

    Declaration
    public const PdfGridBuiltinStyle GridTable6Colorful
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable6ColorfulAccent1

    Specifies the grid to render Grid Table 6 Colorful - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable6ColorfulAccent1
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable6ColorfulAccent2

    Specifies the grid to render Grid Table 6 Colorful - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable6ColorfulAccent2
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable6ColorfulAccent3

    Specifies the grid to render Grid Table 6 Colorful - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable6ColorfulAccent3
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable6ColorfulAccent4

    Specifies the grid to render Grid Table 6 Colorful - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable6ColorfulAccent4
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable6ColorfulAccent5

    Specifies the grid to render Grid Table 6 Colorful - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable6ColorfulAccent5
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable6ColorfulAccent6

    Specifies the grid to render Grid Table 6 Colorful - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable6ColorfulAccent6
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable7Colorful

    Specifies the grid to render Grid Table 7 Colorful style.

    Declaration
    public const PdfGridBuiltinStyle GridTable7Colorful
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable7ColorfulAccent1

    Specifies the grid to render Grid Table 7 Colorful - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable7ColorfulAccent1
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable7ColorfulAccent2

    Specifies the grid to render Grid Table 7 Colorful - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable7ColorfulAccent2
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable7ColorfulAccent3

    Specifies the grid to render Grid Table 7 Colorful - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable7ColorfulAccent3
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable7ColorfulAccent4

    Specifies the grid to render Grid Table 7 Colorful - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable7ColorfulAccent4
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable7ColorfulAccent5

    Specifies the grid to render Grid Table 7 Colorful - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable7ColorfulAccent5
    Field Value
    Type
    PdfGridBuiltinStyle

    GridTable7ColorfulAccent6

    Specifies the grid to render Grid Table 7 Colorful - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle GridTable7ColorfulAccent6
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable1Light

    Specifies the grid to render Light Table 1 Light style.

    Declaration
    public const PdfGridBuiltinStyle ListTable1Light
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable1LightAccent1

    Specifies the grid to render Light Table 1 Light - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable1LightAccent1
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable1LightAccent2

    Specifies the grid to render Light Table 1 Light - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable1LightAccent2
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable1LightAccent3

    Specifies the grid to render Light Table 1 Light - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable1LightAccent3
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable1LightAccent4

    Specifies the grid to render Light Table 1 Light - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable1LightAccent4
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable1LightAccent5

    Specifies the grid to render Light Table 1 Light - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable1LightAccent5
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable1LightAccent6

    Specifies the grid to render Light Table 1 Light - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable1LightAccent6
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable2

    Specifies the grid to render Light Table 2 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable2
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable2Accent1

    Specifies the grid to render Light Table 2 - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable2Accent1
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable2Accent2

    Specifies the grid to render Light Table 2 - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable2Accent2
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable2Accent3

    Specifies the grid to render Light Table 2 - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable2Accent3
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable2Accent4

    Specifies the grid to render Light Table 2 - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable2Accent4
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable2Accent5

    Specifies the grid to render Light Table 2 - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable2Accent5
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable2Accent6

    Specifies the grid to render Light Table 2 - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable2Accent6
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable3

    Specifies the grid to render Light Table 3 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable3
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable3Accent1

    Specifies the grid to render Light Table 3 - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable3Accent1
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable3Accent2

    Specifies the grid to render Light Table 3 - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable3Accent2
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable3Accent3

    Specifies the grid to render Light Table 3 - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable3Accent3
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable3Accent4

    Specifies the grid to render Light Table 3 - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable3Accent4
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable3Accent5

    Specifies the grid to render Light Table 3 - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable3Accent5
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable3Accent6

    Specifies the grid to render Light Table 3 - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable3Accent6
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable4

    Specifies the grid to render Light Table 4 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable4
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable4Accent1

    Specifies the grid to render Light Table 4 - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable4Accent1
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable4Accent2

    Specifies the grid to render Light Table 4 - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable4Accent2
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable4Accent3

    Specifies the grid to render Light Table 4 - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable4Accent3
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable4Accent4

    Specifies the grid to render Light Table 4 - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable4Accent4
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable4Accent5

    Specifies the grid to render Light Table 4 - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable4Accent5
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable4Accent6

    Specifies the grid to render Light Table 4 - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable4Accent6
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable5Dark

    Specifies the grid to render Light Table 5 Dark style.

    Declaration
    public const PdfGridBuiltinStyle ListTable5Dark
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable5DarkAccent1

    Specifies the grid to render Light Table 5 Dark - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable5DarkAccent1
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable5DarkAccent2

    Specifies the grid to render Light Table 5 Dark - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable5DarkAccent2
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable5DarkAccent3

    Specifies the grid to render Light Table 5 Dark - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable5DarkAccent3
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable5DarkAccent4

    Specifies the grid to render Light Table 5 Dark - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable5DarkAccent4
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable5DarkAccent5

    Specifies the grid to render Light Table 5 Dark - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable5DarkAccent5
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable5DarkAccent6

    Specifies the grid to render Light Table 5 Dark - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable5DarkAccent6
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable6Colorful

    Specifies the grid to render Light Table 6 Colorful style.

    Declaration
    public const PdfGridBuiltinStyle ListTable6Colorful
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable6ColorfulAccent1

    Specifies the grid to render Light Table 6 Colorful - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable6ColorfulAccent1
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable6ColorfulAccent2

    Specifies the grid to render Light Table 6 Colorful - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable6ColorfulAccent2
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable6ColorfulAccent3

    Specifies the grid to render Light Table 6 Colorful - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable6ColorfulAccent3
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable6ColorfulAccent4

    Specifies the grid to render Light Table 6 Colorful - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable6ColorfulAccent4
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable6ColorfulAccent5

    Specifies the grid to render Light Table 6 Colorful - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable6ColorfulAccent5
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable6ColorfulAccent6

    Specifies the grid to render Light Table 6 Colorful - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable6ColorfulAccent6
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable7Colorful

    Specifies the grid to render Light Table 7 Colorful style.

    Declaration
    public const PdfGridBuiltinStyle ListTable7Colorful
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable7ColorfulAccent1

    Specifies the grid to render Light Table 7 Colorful - Accent 1 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable7ColorfulAccent1
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable7ColorfulAccent2

    Specifies the grid to render Light Table 7 Colorful - Accent 2 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable7ColorfulAccent2
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable7ColorfulAccent3

    Specifies the grid to render Light Table 7 Colorful - Accent 3 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable7ColorfulAccent3
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable7ColorfulAccent4

    Specifies the grid to render Light Table 7 Colorful - Accent 4 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable7ColorfulAccent4
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable7ColorfulAccent5

    Specifies the grid to render Light Table 7 Colorful - Accent 5 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable7ColorfulAccent5
    Field Value
    Type
    PdfGridBuiltinStyle

    ListTable7ColorfulAccent6

    Specifies the grid to render Light Table 7 Colorful - Accent 6 style.

    Declaration
    public const PdfGridBuiltinStyle ListTable7ColorfulAccent6
    Field Value
    Type
    PdfGridBuiltinStyle

    PlainTable1

    Specifies the grid to render Plain Table 1 style.

    Declaration
    public const PdfGridBuiltinStyle PlainTable1
    Field Value
    Type
    PdfGridBuiltinStyle

    PlainTable2

    Specifies the grid to render Plain Table 2 style.

    Declaration
    public const PdfGridBuiltinStyle PlainTable2
    Field Value
    Type
    PdfGridBuiltinStyle

    PlainTable3

    Specifies the grid to render Plain Table 3 style.

    Declaration
    public const PdfGridBuiltinStyle PlainTable3
    Field Value
    Type
    PdfGridBuiltinStyle

    PlainTable4

    Specifies the grid to render Plain Table 4 style.

    Declaration
    public const PdfGridBuiltinStyle PlainTable4
    Field Value
    Type
    PdfGridBuiltinStyle

    PlainTable5

    Specifies the grid to render Plain Table 5 style.

    Declaration
    public const PdfGridBuiltinStyle PlainTable5
    Field Value
    Type
    PdfGridBuiltinStyle

    TableGrid

    Specifies the grid to render Table Grid style.

    Declaration
    public const PdfGridBuiltinStyle TableGrid
    Field Value
    Type
    PdfGridBuiltinStyle

    TableGridLight

    Specifies the grid to render Table Grid Light style.

    Declaration
    public const PdfGridBuiltinStyle TableGridLight
    Field Value
    Type
    PdfGridBuiltinStyle
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved