Description This function returns the file name string from an Encrypted Thin Film coating model. In the GUI, the file name string is displayed in the Description column next to the "Select File" button.
Syntax fname = GetEncryptedThinFilmFileName( coat )
Parameters fname (String) Returned file name string.
coat As Long Node number of the coating being queried.
Example The example below demonstrates how to retrieve the file name string associated with an Encrypted Thin Film coating.
Sub Main
Dim eCoat As Long eCoat = FindCoating( "Test Encrypted Coating" ) Print "Encrypted file name string: " & GetEncryptedThinFilmFileName( eCoat )
End Sub
See Also
AddEncryptedThinFilmCoatingFromData AddEncryptedThinFilmCoatingFromFile GetEncryptedThinFilmIsSubstrateAtLastLayer SetEncryptedThinFilmIsSubstrateAtLastLayer
|