pteExportLayerSet
pteExportLayerSet(
t_layerSetName
t_layerSetRepositoryPath
t_layerSetFilePath
[ g_overwrite ]
)
=> t / nil
Description
Exports a layer set from a Palette layer set repository to the file system.
Arguments
|
t_layerSetName
|
Name of the layer set to be exported.
|
|
t_layerSetRepositoryPath
|
|
|
The path to the layer set repository that contains the layer set to be exported.
|
|
t_layerSetFilePath
|
|
|
The path to the location where you want to save the exported layer set. Include in this path the filename (filename.layerSet) with which you want to save the exported layer set.
|
|
g_overwrite
|
If set to t, any existing layer set file with the same name is overwritten. Default value: t
|
Value Returned
|
t
|
The specified layer set was exported.
|
|
nil
|
The command was unsuccessful.
|
Examples
pteExportLayerSet("metal" ".cadence" "/tmp/metal.layerSet")
pteExportLayerSet("metal" "/share/.cadence" "/tmp/metal.layerSet")
pteExportLayerSet("metal" ".cadence" "/tmp/metal.layerSet" t)
Return to top