FZ_FormBase.GetFzPath

Gets the FZ path name

Public Shared Function GetFzPath( _
   ByVal kind As FzPathKind _
) As String

Parameters
kind
Type of FZ directory path to be gotten
FzPathKind.Root : Root directory path name as the target of data save/load
Input

Return Value
Returns the string representing the specified FZ directory path.

Description
Gets the specified type of FZ directory path.
Only the root directory path name can be accessed as the target of data save/load.

Example
   Private Sub Form_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load

       Dim dir As String

       ' Gets the target directory of data save/load
       dir = GetFzPath(FzPathKind.Root)

   End Sub