FGDB graph export settings.
@example:
# Settings class used to control parameters for exporting graphs to Esri File GDB
graph = ce.getObjectsFrom(ce.scene, ce.withName("'StreetnetworkSouth'"))
exportSettings = FGDBExportGraphSettings()
exportSettings.setFilename(ce.toFSPath("data/batchExportTests/graphsouth.gdb"))
ce.export(graph, exportSettings)
Methods defined here:
getExportLog
getExportLog(self):
Returns a dictionary containing details of the export.
@return: A dictionary containing details about the finished export.
getFilename
getFilename(self):
Gets Filename field. Path to the export location.
@return: Value of Filename field. [str]
getScript
getScript(self):
Gets Script field. Python script to use for export callbacks.
@return: Value of Script field. [str]
setFilename
setFilename(self, stringValue):
Sets Filename field. Path to the export location.
@param stringValue: the new value. [str]
setScript
setScript(self, stringValue):
Sets Script field. Python script to use for export callbacks.
@param stringValue: the new value. [str]