alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class PdfDetailTemplateRowSettings

    Provides configuration for rendering a detail template row in PDF export. Includes column layout, optional header and content rows, and image support. Inherits hyperlink and text settings from DetailTemplateSettings.

    Inheritance
    object
    DetailTemplateSettings
    PdfDetailTemplateRowSettings
    Inherited Members
    DetailTemplateSettings.Hyperlink
    DetailTemplateSettings.Text
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.Grids
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class PdfDetailTemplateRowSettings : DetailTemplateSettings

    Constructors

    PdfDetailTemplateRowSettings()

    Declaration
    public PdfDetailTemplateRowSettings()

    Properties

    ColumnCount

    Gets or sets the total number of columns in the detail rows.

    Declaration
    public int? ColumnCount { get; set; }
    Property Value
    Type Description
    int?

    The default value could be null.

    Remarks

    If the column count property is not specified, it will be determined based on the Headers and Rows of the first row's cell count. If the column count is less than the cell count, it will be considered as the row's cell count instead of the column count.

    Headers

    Gets or sets the PdfGrid header content of the detail row which includes stacked headers too.

    Declaration
    public List<PdfDetailTemplateRow>? Headers { get; set; }
    Property Value
    Type Description
    List<PdfDetailTemplateRow>

    A collection of PdfDetailTemplateRow objects representing header content.

    Remarks

    This property is utilized to render the hierarchical grid structure, which includes headers. It can render multi-level stacked headers if the detail grid has them; otherwise, there is no need to define value for this property.

    Image

    Gets or sets the image details of the current cell.

    Declaration
    public PdfImage? Image { get; set; }
    Property Value
    Type Description
    PdfImage

    An Syncfusion.PdfExport.PdfImage object represents image details such as ImageStream, width, and height etc.., You can customize and export image using this Image property.

    Rows

    Gets or sets the collection of PdfGrid content rows for the corresponding detail row.

    Declaration
    public List<PdfDetailTemplateRow>? Rows { get; set; }
    Property Value
    Type Description
    List<PdfDetailTemplateRow>

    A list of PdfDetailTemplateRow objects representing content for the detail row.

    Remarks

    This property is utilized to render the hierarchical grid structure; otherwise, there is no need to define value for this property.

    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2026 Syncfusion Inc. All Rights Reserved