<div dir="ltr"><div>You really have to be familiar with the XML structure of the resources you are working with. The objects you are interacting with on the console are objects that have near 1:1 structure with their respective XML schema definition.</div><div><br></div><div>The bulk of the Maestro API is C# classes auto-generated from the .xsd documents that ship with MapGuide. These .xsd files describe the shape of all the resources (and all the versions of these resources) you can work with in MapGuide. Because these .xsd documents exist in multiple versions, we use C# interfaces to provide commonality across these different auto-generated classes and when working with resources in Maestro API, you're working against these interfaces and never have to deal with the underlying auto-generated classes.<br><br>I'm sorry if the API documentation is not that helpful or barebones around these classes/interfaces because practically speaking at the moment it is simpler to just look at the underlying .xsd documents to understand the XML structure of a specific resource type rather than painstakingly repeat all of this documentation in our common wrapping interfaces.</div><div><br></div><div>In the case of Layer Definitions, you should refer to the respective LayerDefinition.xsd to understand the structure of a Layer Definition document. These schema files are in the Server/Schema folder of your MapGuide install and are also included in the Schemas directory of your Maestro installation. If you're unable to read/understand these .xsd schema files then I can't really help you there.</div><div><br></div><div>Either way, I'll give you a cliff-notes version of the Layer Definition structure:</div><div><br></div><div>A Layer Definition has:</div><div> - A sub element that indicates if this is a vector, raster or DWF-based drawing layer</div><div>    - Because we're dealing with a vector layer, it has 1:n vector scale ranges</div><div>       - Each vector scale range has *zero or one* of:</div><div>          - A point style</div><div>             - With 1:n point rules</div><div>          - A line style</div><div>             - With 1:n line rules</div><div>          - An area (polygon) style</div><div>             - With 1:n area rules</div><div>          - A composite style (if using advanced stylization)</div><div>             - With 1:n composite rules</div><div><br></div><div>So to then revisit your original problem: Why is there no GetPointStyleAt() function?</div><div><br></div><div>Because there is indeed no such function. There's only one point style: The .PointStyle property.</div><div><br></div><div>Same thing for line/area/composite styles.</div><div><br></div><div>We only provide GetXXXAt() and AddXXX() functions for elements that can exist 1 or more times. Point styles do not qualify. Therefore they only exist as properties to set directly.</div><div><br></div><div>Therefore your code should've been this:</div><div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><font face="monospace">  if vectorScaleRange.PointStyle is None:</font></div><div><font face="monospace">    pointStyle = ldf.CreateDefaultPointStyle()</font></div><div><font face="monospace">    #Add the new pointStyle to the vectorScaleRange</font></div><div><font face="monospace">    vectorScaleRange.PointStyle = pointStyle</font></div><div><font face="monospace">  else:</font></div><div><font face="monospace">    print "There already is a pointStyle"</font></div></blockquote><div><br></div><div>I would think and hope that as you were typing your original code out in the IronPython console, that the autocomplete did not provide any suggestions for GetPointStyleAt after you hit dot after vectorScaleRange. That is because the autocomplete was telling the truth: There is no such function on the vectorScaleRange object. </div><div><br></div><div>- Jackie</div><div><br></div>You wrote:<div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div></div></div></div><div><br></div><div><p class="MsoNormal"><span style="font-size:11pt">Sorry to bother you again.<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt"><u></u> <u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">Trying:<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">  if vectorScaleRange.GetPointStyleAt(0) is None:<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">    pointStyle = ldf.CreateDefaultPointStyle()<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">    #Add the new pointStyle to the vectorScaleRange<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">    vectorScaleRange.PointStyle.AddPointStyle(pointStyle)<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">  else:<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">    print "There already is a pointStyle"<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt"><u></u> <u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">Apparently there is no GetPointStyle() or GetPointStyle<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt"><u></u> <u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">Here is where I cannot seem to grasp the logic of things.<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">Is there documentation about all getters and setters ?<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">I searched the API documentation for PointStyle and there is a decscription, however:<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">I franly do not understand how to use the API documentation and apply it in the context of IronPython.<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt"><u></u> <u></u></span></p><p class="MsoNormal"><span style="font-size:11pt">(There is not much to go on for a beginner on it seems)<u></u><u></u></span></p><p class="MsoNormal"><span style="font-size:11pt"><u></u> <u></u></span></p><p class="MsoNormal"><span style="font-size:11pt"><u></u> <u></u></span></p><p class="MsoNormal"><span style="font-size:11pt"><u></u> <u></u></span></p><p class="MsoNormal"><span lang="NL" style="font-size:11pt">Met vriendelijke groet,<u></u><u></u></span></p><p class="MsoNormal"><span lang="NL" style="font-size:11pt"><u></u> <u></u></span></p><p class="MsoNormal"><span lang="nl" style="color:black">GISkit BV<u></u><u></u></span></p><p class="MsoNormal"><span lang="nl" style="color:black">Bart Oostdam</span></p></div></div>