getrenderproperty
Gets the value of a drawing property, functionally similar to drawing[property].
function getrenderproperty(drawing: Drawing, property: string): anyParameters
drawing- The drawing's property to get.property- The property.
Example
local circle = Drawing.new("Circle")
circle.Radius = 50
print(getrenderproperty(circle, "Radius")) -- Output: 50
print(getrenderproperty(circle, "Visible")) -- Output: falseLast updated