set hole wizard hole size for given configuration scope

I have a part with more than 1 configuration, and I have a hole wizard hole in that part.

I want to set the hole size for a given configuration scope (this/all/specific), just like one can do with dimensions using IDimension.SetValue3.

So I'm basically looking for a method like IDimension.SetValue3, but which sets the hole size of a hole wizard hole instead. Does such a method exist? And if no such method exists, how else can I achieve this?

What I currently have is this:

1. I take the IWizardHoleFeatureData2 and call AccessSelections.
2. I call IWizardHoleFeatureData2.ChangeStandard to set the new size.
3. I call IWizardHoleFeatureData2.ModifyDefinition and finally IModelDoc.EditAssembly (on root model doc).

It does set the size, but I have no control over the scope using that method. It always uses the current scope, i.e. the one that is selected in the attached image.

So is there a method that allows me to set the scope manually before going through the steps above? If there is, that would solve my problem as well.

Any other ideas or hints?


(Also see this question on cadforum.net.)