Output Size of Graph Relative to Parent
Good afternoon,
We're trying to ascertain the recommended output size of a graph with output size set to Relative to Parent when publishing sbs files.
Our artists would like to specify a prefered output size in the graph toolbar:

...but capturing the size specified via the Substance Designer API is proving difficult. If the graph output size is set to Absolute, I can query the output size with this:
prop = graph.getPropertyFromId("$outputsize", SDPropertyCategory.Input)
size = graph.getPropertyValue(prop).get()
But if the graph output size is Relative to Parent, the value returned is always (0,0). Looking through the XML code in the sbs file, the value I'm trying to capture is 'defaultParentSize' in the graph options. Is there a way to query this with the SD API?
