CustomFileName Property

Type

System.String

 

Access

Get only

 

Description

The CustomFileName property returns the path and name of the custom data source file that is currently loaded into the DataSourceComponenet. If IsLoaded returns false, or if no custom data source was specified during load, then this method will return the empty string.

 

Example

[VB]

Private Sub GeoCalcNET_DataSourceComponent_CustomFileName(ByVal data As GeoCalcNET.DataSourceComponent)

Dim filename As String = data.CustomFileName

End Sub

 

[C#]

private void GeoCalcNET_DataSourceComponent_CustomFileName(GeoCalcNET.DataSourceComponent data)

{

String filename = data.CustomFileName;

}