Table of Contents

Class DefinePrintOptionsEventArgs

Namespace
combit.Reporting
Assembly
combit.ListLabel31.CrossPlatform.dll

Provides data for the DefinePrintOptions event that is raised after loading a project and before printing it.

public class DefinePrintOptionsEventArgs : EventArgs
Inheritance
DefinePrintOptionsEventArgs
Inherited Members

Constructors

DefinePrintOptionsEventArgs(ProjectBase, string, ProjectLoadMode)

Provides data for the DefinePrintOptions event that is raised after loading a project and before printing it.

public DefinePrintOptionsEventArgs(ProjectBase project, string projectFilePath, ProjectLoadMode projectLoadMode)

Parameters

project ProjectBase

The ProjectBase which has been loaded and is about to be printed.

projectFilePath string

The file path of the project that was loaded.

projectLoadMode ProjectLoadMode

The mode used when loading the project, indicating the context and behavior of the load operation.

Properties

Project

The ProjectBase which has been loaded and is about to be printed. It allows the user to perform modifications such as changing object properties or user variables before printing.

public ProjectBase Project { get; }

Property Value

ProjectBase

ProjectFilePath

Gets the file path of the project that was loaded.

public string ProjectFilePath { get; }

Property Value

string

ProjectLoadMode

Gets the mode that was used when loading the project. This indicates the context and behavior of the load operation, such as whether the project was loaded as a template, sub-report, or in default mode.

public ProjectLoadMode ProjectLoadMode { get; }

Property Value

ProjectLoadMode