Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

PdfSettings.cs

using Nop.Core.Configuration;

namespace Nop.Core.Domain.Common;

/// 
/// PPDF settings
/// 
public partial class PdfSettings : ISettings
{
    /// 
    /// PDF logo picture identifier
    /// 
    public int LogoPictureId { get; set; }

    /// 
    /// Gets or sets whether letter page size is enabled
    /// 
    public bool LetterPageSizeEnabled { get; set; }

    /// 
    /// Gets or sets a value indicating whether to render order notes in PDf reports
    /// 
    public bool RenderOrderNotes { get; set; }

    /// 
    /// Gets or sets a value indicating whether to disallow customers to print PDF invoices for pedning orders
    /// 
    public bool DisablePdfInvoicesForPendingOrders { get; set; }

    /// 
    /// Gets or sets the font name that will be used
    /// 
    public string FontFamily { get; set; }

    /// 
    /// Gets or sets the text that will appear at the bottom of invoices (column 1)
    /// 
    public string InvoiceFooterTextColumn1 { get; set; }

    /// 
    /// Gets or sets the text that will appear at the bottom of invoices (column 1)
    /// 
    public string InvoiceFooterTextColumn2 { get; set; }
}