Gets or sets a value indicating whether Load()()()() is automatically invoked on startup and when a change occurs that impacts the query composed by the ClientViewSource. The default is True.

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

Syntax

C#
[CategoryAttribute("Common")]
[DefaultValueAttribute(true)]
public bool AutoLoad { get; set; }
Visual Basic
<CategoryAttribute("Common")> _
<DefaultValueAttribute(True)> _
Public Property AutoLoad As Boolean
	Get
	Set

Remarks

When AutoLoad is True, any property change affecting the load query will automatically invoke a Load()()()() after the specified LoadDelay. Examples of properties that impact the query are PageSize and FilterOperator. Also, changes to dependency object collections like FilterDescriptors and changes to the dependency properties on elements contained in those collections will affect the query and prompt an automatic Load()()()().

See Also