Skip to main content

SpreadsheetDataSourceLoadingOptions.CustomAssemblyBehavior Property

Specifies the behavior when the EFDataSource attempts to load a custom assembly during mail merge.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

[DefaultValue(SpreadsheetCustomAssemblyBehavior.NeverLoad)]
public SpreadsheetCustomAssemblyBehavior CustomAssemblyBehavior { get; set; }

Property Value

Type Default Description
SpreadsheetCustomAssemblyBehavior NeverLoad

A SpreadsheetCustomAssemblyBehavior enumeration member that specifies an action performed when attempting to load a custom assembly during mail merge.

Available values:

Name Description
Prompt

Decide whether to load each custom assembly. Raise the CustomAssemblyLoading event and check the arguments. If the event is not handled - query the notification service. Cancel loading if neither event nor service provide a response.

LoadSilently

Custom assemblies can be loaded without notice.

NeverLoad

No custom assembly can ever be loaded.

Property Paths

You can access this nested property as listed below:

Object Type Path to CustomAssemblyBehavior
DocumentOptions
.DataSourceLoading .CustomAssemblyBehavior

Remarks

This property is accessible using the SpreadsheetControl.Options.DataSourceLoading.CustomAssemblyBehavior notation.

The SpreadsheetCustomAssemblyBehavior.Prompt value raises the SpreadsheetControl.CustomAssemblyLoading event and calls the ICustomAssemblyLoadingNotificationService.RequestApproval method of the SpreadsheetControl service to determine whether to load the Entity Framework data context from a custom assembly.

Tip

Use the SpreadsheetDataSourceWizardOptions.CustomAssemblyBehavior property to specify whether the Data Source Wizard can load a custom assembly containing the Entity Framework data context.

See Also