Here is the example using arguments that assign a column property to a map role.
col<<Set Property( "Map Role", Map Role( Shape Name Use( "filepath to data table", "column name" ) ) );
I want to get the file path automatically and fill in to the "filepath to data table" in the arguments above.
And this is how I get the path of the file:
Logo_Name = Pick FIle();
Logo_Name_File = Open(Logo_Name);
LogoPath = Logo_Name_File << Get Path();
And below doesn't work for me.
:Measure points<<Set Property( "Map Role", Map Role( Shape Name Use( LogoPath , "Name" ) ) );
How can I fill in the "file path to data table " with the LogoPath variable?