ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Layouts Namespace / Element Class / GetCustomProperty Method
Example

In This Topic
    GetCustomProperty Method (Element)
    In This Topic
    Gets a Custom Property value for the element.
    Syntax
    public string GetCustomProperty( 
       string key
    )
    Public Function GetCustomProperty( _
       ByVal key As String _
    ) As String

    Parameters

    key

    Return Value

    Returns a string based on the key that is provided.
    Example
    Element_GetCustomProperty
    //Get a custom property that has been previously set.
    
    //Perform on the worker thread
    await QueuedTask.Run(() =>
    {
      String custProp = element.GetCustomProperty("MyKeyString");
    });
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also