Wrote code to create an animation inside of ArcMap. Need to export the animation to single images. Here is the code thus far.
Dim exporter As ESRI.ArcGIS.Animation.ISequentialImageExporter = New ESRI.ArcGIS.Animation.AnimationExporterSeqImages
exporter.FolderName = "C:\temp\CAT"
exporter.ImagePrefix = "crime"
exporter.ImagesPerSecond = 10
exporter.ImageFormat = "BMP"
Could not locate a method to perform the actual export. Has anyone done this? Help would be appreciated.
Dim exporter As ESRI.ArcGIS.Animation.ISequentialImageExporter = New ESRI.ArcGIS.Animation.AnimationExporterSeqImages
exporter.FolderName = "C:\temp\CAT"
exporter.ImagePrefix = "crime"
exporter.ImagesPerSecond = 10
exporter.ImageFormat = "BMP"
Could not locate a method to perform the actual export. Has anyone done this? Help would be appreciated.