Search
Calendar.SaveTo Method
See Also
 






Saves the underlying schedule to the specified file.

Namespace: MindFusion.Scheduling
Assembly: MindFusion.Scheduling

 Syntax

C#  Copy Code

public Task SaveTo (
    Stream stream
)

Visual Basic  Copy Code

Public Function SaveTo( _
    stream As Stream _
) As Task

 Parameters

stream

The stream to save to.

 Return Value

 Remarks

This method saves the schedule data to the specified binary or XML file. The data can be subsequently restored by a call to the LoadFrom method. This method also attempts to save the current view state such as the item position within a List view whose FreeDrag property is enabled.

 See Also