Xamarin.Forms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class PdfLightTableBuiltinStyle

    Show / Hide Table of Contents

    Class PdfLightTableBuiltinStyle

    Specified PdfLightTable built-in table styles

    Inheritance
    System.Object
    PdfLightTableBuiltinStyle
    Namespace: Syncfusion.Pdf
    Assembly: Syncfusion.Pdf.Portable.dll
    Syntax
    public sealed class PdfLightTableBuiltinStyle : Enum
    Examples
    //Create a new PDF document.
    PdfDocument doc = new PdfDocument();
    //Add a page.
    PdfPage page = doc.Pages.Add();
    //Create a new PDF light table instance.
    PdfLightTable table = new PdfLightTable();
    //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 light table build style settings instance.
    dfLightTableBuiltinStyleSettings settings = new PdfLightTableBuiltinStyleSettings();
    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(PdfLightTableBuiltinStyle.ListTable6ColorfulAccent4, settings);           
    //Draw table 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 light table instance.
    Dim table As New PdfLightTable()
    '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 light table build style settings instance.
    Dim settings As New PdfLightTableBuiltinStyleSettings()
    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(PdfLightTableBuiltinStyle.ListTable6ColorfulAccent4, settings)
    'Draw table 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 table to render Grid Table 1 Light style.

    Declaration
    public const PdfLightTableBuiltinStyle GridTable1Light
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable1LightAccent1

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable1LightAccent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable1LightAccent2

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable1LightAccent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable1LightAccent3

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable1LightAccent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable1LightAccent4

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable1LightAccent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable1LightAccent5

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable1LightAccent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable1LightAccent6

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable1LightAccent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable2

    Specifies the table to render Grid Table 2 style.

    Declaration
    public const PdfLightTableBuiltinStyle GridTable2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable2Accent1

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable2Accent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable2Accent2

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable2Accent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable2Accent3

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable2Accent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable2Accent4

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable2Accent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable2Accent5

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable2Accent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable2Accent6

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable2Accent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable3

    Specifies the table to render Grid Table 3 style.

    Declaration
    public const PdfLightTableBuiltinStyle GridTable3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable3Accent1

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable3Accent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable3Accent2

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable3Accent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable3Accent3

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable3Accent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable3Accent4

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable3Accent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable3Accent5

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable3Accent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable3Accent6

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable3Accent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable4

    Specifies the table to render Grid Table 4 style.

    Declaration
    public const PdfLightTableBuiltinStyle GridTable4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable4Accent1

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable4Accent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable4Accent2

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable4Accent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable4Accent3

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable4Accent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable4Accent4

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable4Accent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable4Accent5

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable4Accent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable4Accent6

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable4Accent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable5Dark

    Specifies the table to render Grid Table 5 Dark style.

    Declaration
    public const PdfLightTableBuiltinStyle GridTable5Dark
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable5DarkAccent1

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable5DarkAccent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable5DarkAccent2

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable5DarkAccent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable5DarkAccent3

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable5DarkAccent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable5DarkAccent4

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable5DarkAccent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable5DarkAccent5

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable5DarkAccent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable5DarkAccent6

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable5DarkAccent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable6Colorful

    Specifies the table to render Grid Table 6 Colorful style.

    Declaration
    public const PdfLightTableBuiltinStyle GridTable6Colorful
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable6ColorfulAccent1

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable6ColorfulAccent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable6ColorfulAccent2

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable6ColorfulAccent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable6ColorfulAccent3

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable6ColorfulAccent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable6ColorfulAccent4

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable6ColorfulAccent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable6ColorfulAccent5

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable6ColorfulAccent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable6ColorfulAccent6

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable6ColorfulAccent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable7Colorful

    Specifies the table to render Grid Table 7 Colorful style.

    Declaration
    public const PdfLightTableBuiltinStyle GridTable7Colorful
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable7ColorfulAccent1

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable7ColorfulAccent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable7ColorfulAccent2

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable7ColorfulAccent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable7ColorfulAccent3

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable7ColorfulAccent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable7ColorfulAccent4

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable7ColorfulAccent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable7ColorfulAccent5

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable7ColorfulAccent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    GridTable7ColorfulAccent6

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

    Declaration
    public const PdfLightTableBuiltinStyle GridTable7ColorfulAccent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable1Light

    Specifies the table to render Light Table 1 Light style.

    Declaration
    public const PdfLightTableBuiltinStyle ListTable1Light
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable1LightAccent1

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable1LightAccent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable1LightAccent2

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable1LightAccent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable1LightAccent3

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable1LightAccent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable1LightAccent4

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable1LightAccent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable1LightAccent5

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable1LightAccent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable1LightAccent6

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable1LightAccent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable2

    Specifies the table to render Light Table 2 style.

    Declaration
    public const PdfLightTableBuiltinStyle ListTable2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable2Accent1

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable2Accent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable2Accent2

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable2Accent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable2Accent3

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable2Accent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable2Accent4

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable2Accent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable2Accent5

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable2Accent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable2Accent6

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable2Accent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable3

    Specifies the table to render Light Table 3 style.

    Declaration
    public const PdfLightTableBuiltinStyle ListTable3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable3Accent1

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable3Accent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable3Accent2

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable3Accent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable3Accent3

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable3Accent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable3Accent4

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable3Accent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable3Accent5

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable3Accent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable3Accent6

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable3Accent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable4

    Specifies the table to render Light Table 4 style.

    Declaration
    public const PdfLightTableBuiltinStyle ListTable4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable4Accent1

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable4Accent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable4Accent2

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable4Accent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable4Accent3

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable4Accent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable4Accent4

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable4Accent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable4Accent5

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable4Accent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable4Accent6

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable4Accent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable5Dark

    Specifies the table to render Light Table 5 Dark style.

    Declaration
    public const PdfLightTableBuiltinStyle ListTable5Dark
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable5DarkAccent1

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable5DarkAccent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable5DarkAccent2

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable5DarkAccent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable5DarkAccent3

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable5DarkAccent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable5DarkAccent4

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable5DarkAccent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable5DarkAccent5

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable5DarkAccent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable5DarkAccent6

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable5DarkAccent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable6Colorful

    Specifies the table to render Light Table 6 Colorful style.

    Declaration
    public const PdfLightTableBuiltinStyle ListTable6Colorful
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable6ColorfulAccent1

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable6ColorfulAccent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable6ColorfulAccent2

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable6ColorfulAccent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable6ColorfulAccent3

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable6ColorfulAccent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable6ColorfulAccent4

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable6ColorfulAccent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable6ColorfulAccent5

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable6ColorfulAccent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable6ColorfulAccent6

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable6ColorfulAccent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable7Colorful

    Specifies the table to render Light Table 7 Colorful style.

    Declaration
    public const PdfLightTableBuiltinStyle ListTable7Colorful
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable7ColorfulAccent1

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable7ColorfulAccent1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable7ColorfulAccent2

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable7ColorfulAccent2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable7ColorfulAccent3

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable7ColorfulAccent3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable7ColorfulAccent4

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable7ColorfulAccent4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable7ColorfulAccent5

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable7ColorfulAccent5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    ListTable7ColorfulAccent6

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

    Declaration
    public const PdfLightTableBuiltinStyle ListTable7ColorfulAccent6
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    PlainTable1

    Specifies the table to render Plain Table 1 style.

    Declaration
    public const PdfLightTableBuiltinStyle PlainTable1
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    PlainTable2

    Specifies the table to render Plain Table 2 style.

    Declaration
    public const PdfLightTableBuiltinStyle PlainTable2
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    PlainTable3

    Specifies the table to render Plain Table 3 style.

    Declaration
    public const PdfLightTableBuiltinStyle PlainTable3
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    PlainTable4

    Specifies the table to render Plain Table 4 style.

    Declaration
    public const PdfLightTableBuiltinStyle PlainTable4
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    PlainTable5

    Specifies the table to render Plain Table 5 style.

    Declaration
    public const PdfLightTableBuiltinStyle PlainTable5
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    TableGrid

    Specifies the table to render Table Grid style.

    Declaration
    public const PdfLightTableBuiltinStyle TableGrid
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    TableGridLight

    Specifies the table to render Table Grid Light style.

    Declaration
    public const PdfLightTableBuiltinStyle TableGridLight
    Field Value
    Type Description
    PdfLightTableBuiltinStyle

    value__

    Declaration
    public int value__
    Field Value
    Type Description
    System.Int32
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved