SaveProperty


Function

Saves the property information to a file.

 

Format

Ret = dncVolume1.SaveProperty(File)

 

Parameters

File [ C#: string ] [ VB.NET: String ]
Specifies the file name to save the properties.

If omitted, "DncVolume.ini" will be used.

 

Return value

Ret [ C#: int ] [ VB.NET: Integer ]

■Common

Value

Description

0

Normality completion

510001

The input parameter is invalid. Check the parameter contents.

520001

Failed to input/output the file. Please check the file path and file name.

Other errors (See also: Error code details)

 

Remarks

You can save the property information in a file.

 

Example

Saves the property settings in "Property1.ini".

C#

int    Ret;

ret = dncVolume1.SaveProperty("Property1.ini");

 

VB.NET

Dim Ret As Integer

Ret = dncVolume1.SaveProperty("Property1.ini")