Search
Calendar.LoadViewSettings Method
See Also
 






Loads the view settings under the specified name from the specified XML document.

Namespace: MindFusion.Scheduling
Assembly: MindFusion.Scheduling

 Syntax

C#  Copy Code

public void LoadViewSettings (
    XDocument document,
    string name
)

Visual Basic  Copy Code

Public Sub LoadViewSettings( _
    document As XDocument, _
    name As String _
)

 Parameters

document

A XDocument to load the settings from.

name

The name of the XML element where the settings should be looked for. If the name is null, the name of the control is used as a key.

 Remarks

This method restores view settings (such as the item position within a List view whose FreeDrag property is enabled) where they were previously saved by a call to SaveViewSettings.

 See Also