Skip to main content
A newer version of this page is available. .

FileCodeCompletionContextStorage(String) Constructor

Creates a new instance of the FileCodeCompletionContextStorage class with the specified folder.

Namespace: DevExpress.XtraReports.CodeCompletion.Storages

Assembly: DevExpress.XtraReports.v19.2.CodeCompletion.dll

NuGet Package: DevExpress.Reporting.CodeCompletion

Declaration

public FileCodeCompletionContextStorage(
    string directoryPath
)

Parameters

Name Type Description
directoryPath String

A string that specifies the folder to store report layouts.

Remarks

The following code demonstrates how to pass the FileCodeCompletionContextStorage class instance to the UseLocalEngine(ICodeCompletionContextStorage) method.

using DevExpress.XtraReports.CodeCompletion;
using DevExpress.XtraReports.CodeCompletion.Storages;

CodeCompletionRequestManager.UseLocalEngine(new FileCodeCompletionContextStorage("D:\\CodeCompletionContext"));
See Also