ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / PopupContent Class / PopupContent Constructor / PopupContent Constructor(String,String)
Html content to display in the pop-up.
Text displayed in the title bar of the pop-up.
Example

In This Topic
    PopupContent Constructor(String,String)
    In This Topic
    Initialize a new instance of PopupContent.
    Syntax
    public PopupContent( 
       string htmlContent,
       string title
    )
    Public Function New( _
       ByVal htmlContent As String, _
       ByVal title As String _
    )

    Parameters

    htmlContent
    Html content to display in the pop-up.
    title
    Text displayed in the title bar of the pop-up.
    Example
    Show a custom pop-up
    public void ShowCustomPopup()
    {
      //Get the active map view.
      var mapView = MapView.Active;
      if (mapView == null)
        return;
    
      //Create custom popup content
      var popups = new List<PopupContent>
            {
                new PopupContent("<b>This text is bold.</b>", "Custom tooltip from HTML string"),
                new PopupContent(new Uri("http://www.esri.com/"), "Custom tooltip from Uri")
            };
      mapView.ShowCustomPopup(popups);
    }
    
    Show a custom pop-up using pop-up window properties
    public void ShowCustomPopupWithWindowDef()
    {
      if (MapView.Active == null) return;
    
      //Create custom popup content
      var popups = new List<PopupContent>
            {
                new PopupContent("<b>This text is bold.</b>", "Custom tooltip from HTML string"),
                new PopupContent(new Uri("http://www.esri.com/"), "Custom tooltip from Uri")
            };
      // Sample code: https://github.com/ArcGIS/arcgis-pro-sdk-community-samples/blob/master/Framework/DynamicMenu/DynamicFeatureSelectionMenu.cs
      var topLeftCornerPoint = new System.Windows.Point(200, 200);
      var popupDef = new PopupDefinition()
      {
        Append = true,      // if true new record is appended to existing (if any)
        Dockable = true,    // if true popup is dockable - if false Append is not applicable
        Position = topLeftCornerPoint,  // Position of top left corner of the popup (in pixels)
        Size = new System.Windows.Size(200, 400)    // size of the popup (in pixels)
      };
      MapView.Active.ShowCustomPopup(popups, null, true, popupDef);
    }
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also