I am converting a control (Code Project CheckBoxComboBox) from C# to VB. Mostly, I can figure out what the C# is doing and write the equivalent in VB. I have not been able to figure this piece out, though.
C# Code:
if ((Parent as Popup).ProcessResizing(ref m))
What is that code trying to do, exactly? I know it is trying to call the ProcessResizing function in the Popup class, but I am unsure about the Parent as Popup
.