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

ICodeCompletionContextStorage Interface

Enables you to implement a custom report layout storage for the local code completion engine.

Namespace: DevExpress.XtraReports.CodeCompletion.Storages

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

Declaration

public interface ICodeCompletionContextStorage

Remarks

For End-User Report Designers, you can activate the local code completion engine that works without an Internet connection. Install the DevExpress.Reporting.CodeCompletion NuGet package and call the CodeCompletionRequestManager.UseLocalEngine method at the application startup.

This local engine requires a storage for report layouts.

You can implement the ICodeCompletionContextStorage interface, create its instance and pass it to the UseLocalEngine(ICodeCompletionContextStorage) method as the parameter.

You can also use the predefined FileCodeCompletionContextStorage or InMemoryCodeCompletionContextStorage classes that implement this interface.

See Also