Copyright © 2008-2023 MultiMedia Soft

TracksBoard.Save method

Previous pageReturn to chapter overviewNext page

Remarks

 

Saves the current session into the given output file. The saved session can be loaded at a later time through the TracksBoard.Load method.

 

For details about the use of the TracksBoard refer to the How to use the TracksBoard to visually compose songs tutorial.

For further details about methods of the TracksBoard refer to the TracksBoard class section.

 

 

Syntax

 

[Visual Basic]

Public Function Save (

strPathname as String

) as enumErrorCodes


 

[C#]

public enumErrorCodes Save (

string strPathname

);


 

[C++]

public: enumErrorCodes Save (

string strPathname

);


 

Parameter

Description

 

 

strPathname

Absolute pathname of the file where the session is saved

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred (see the LastError property for further error details)

enumErrorCodes.NOERROR (0)

The method call was successful.