Saturday Snippet – Hiding the Name parameter on a dynamic PPG


var oCustomProperty = Selection(0).AddCustomProperty("whatever");

// add parameters
oCustomProperty.AddParameter( "number", siFloat, siClassifUnknown, siPersistable, "", "", "", 0.5, 0, 1, 0, 1 );

// hide Name
p = oCustomProperty.Parameters("Name")
p.SetCapabilityFlag( siNotInspectable, true );

2 thoughts on “Saturday Snippet – Hiding the Name parameter on a dynamic PPG

Leave a comment