Gets or sets a value indicating whether the ClientViewSource is in virtual mode. Virtual mode is an innovative technology allowing to bind GUI controls directly to very large data sets without delays and performance degradation and without inconvenience of paging. By default, virtual mode is disabled (the default value is None).

Namespace:  C1.Data.DataSource
Assembly:  C1.Data.Entity (in C1.Data.Entity.dll)

Syntax

C#
[DefaultValueAttribute(VirtualModeKind.None)]
[CategoryAttribute("Common")]
public VirtualModeKind VirtualMode { get; set; }
Visual Basic
<DefaultValueAttribute(VirtualModeKind.None)> _
<CategoryAttribute("Common")> _
Public Property VirtualMode As VirtualModeKind
	Get
	Set

Remarks

ClientViewSource in virtual mode intelligently and transparently both for the end user and for the developer loads only the entities that need to be displayed on the screen.

To enable virtual mode, set this property to Managed if you have a control handler with VirtualMode set to True; otherwise, set it to Unmanaged.

See Also