public void SaveAsFile( string fullPathToPagXFile )
Public Sub SaveAsFile( _ ByVal fullPathToPagXFile As String _ )
Parameters
- fullPathToPagXFile
public void SaveAsFile( string fullPathToPagXFile )
Public Sub SaveAsFile( _ ByVal fullPathToPagXFile As String _ )
Exception | Description |
---|---|
ArcGIS.Core.CalledOnWrongThreadException | This method must be called within the lambda passed to QueuedTask.Run. |
//Save a layout to a pagx file. //Perform on the worker thread await QueuedTask.Run(() => { layout.SaveAsFile(filePath); });
Target Platforms: Windows 10, Windows 8.1, Windows 7