vote up 3 vote down star

Is there a way to cast a user control as a specific user control so I have access to it's public properties? Basicly I'm foreaching through a placeholder's controls collection and I'm trying to access the user control's public properties.

foreach(UserControl uc in plhMediaBuys.Controls) { uc.PulblicPropertyIWantAccessTo; }

flag

3 Answers

vote up 7 vote down check
foreach(UserControl uc in plhMediaBuys.Controls) {
    MyControl c = uc as MyControl;
    if (c != null) {
        c.PublicPropertyIWantAccessTo;
    }
}
link|flag
I prefer this way of doing it although fallen888's will work too. – Marcus King Oct 22 '08 at 19:03
In fact, this example seems less efficient to me, because you're creating another instance of MyControl. – Kon M Oct 22 '08 at 19:05
This code doesn't actually create a new instance of MyControl, it just creates a new reference to one. References are essentially pointers, so there should be no performance penalty here. – Charlie Oct 22 '08 at 19:10
Actually, if you use the "as" keyword or just cast the variable, you are doing the same thing. The only difference between the two is "as" returns null if it can't cast, instead of throwing an exception. – Chris Pietschmann Oct 22 '08 at 19:10
I stand corrected, however it still seems unnecessary - adds onto the complexity of the code. – Kon M Oct 22 '08 at 19:14
show 5 more comments
vote up 3 vote down
foreach(UserControl uc in plhMediaBuys.Controls)
{
  if (uc is MySpecificType)
  {
    return (uc as MySpecificType).PulblicPropertyIWantAccessTo;
  }
}
link|flag
Actually, if you use the "as" keyword or just cast the variable, you are doing the same thing. The only difference between the two is "as" returns null if it can't cast, instead of throwing an exception. – Chris Pietschmann Oct 22 '08 at 19:10
True, but it'll never hit that line if it's not able to cast. – Kon M Oct 22 '08 at 19:16
vote up 1 vote down

Casting

I prefer to use:

foreach(UserControl uc in plhMediaBuys.Controls)
{
    ParticularUCType myControl = uc as ParticularUCType;
    if (myControl != null)
    {
        // do stuff with myControl.PulblicPropertyIWantAccessTo;
    }
}

Mainly because using the is keyword causes two (quasi-expensive) casts:

if( uc is ParticularUCType ) // one cast to test if it is the type
{
    ParticularUCType myControl = (ParticularUCType)uc; // second cast
    ParticularUCType myControl = uc as ParticularUCType; // same deal this way
    // do stuff with myControl.PulblicPropertyIWantAccessTo;
}

References

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.