![]() |
This document is archived and information here might be outdated. Recommended version. |
Get the active document path for the ArcGIS application.
///<summary>Get the active document path for the ArcGIS application.</summary>
///
///<param name="application">An IApplication interface.</param>
///
///<returns>A System.String is returned that is the path for the document.</returns>
///
///<remarks></remarks>
public System.String GetActiveDocumentPath(ESRI.ArcGIS.Framework.IApplication application)
{
ESRI.ArcGIS.Framework.ITemplates templates=application.Templates;
return templates.get_Item(templates.Count - 1);
}
'''<summary>Get the active document path for the ArcGIS application.</summary> ''' '''<param name="application">An IApplication interface.</param> ''' '''<returns>A System.String is returned that is the path for the document.</returns> ''' '''<remarks></remarks> Public Function GetActiveDocumentPath(ByVal application As ESRI.ArcGIS.Framework.IApplication) As System.String Dim templates As ESRI.ArcGIS.Framework.ITemplates=application.Templates Return templates.Item(templates.Count - 1) End Function