2

Seemingly a simple enough question, but I cannot work it out.

I want to hide a CEikLabel at a certain point. I want a function like..

myLabel->SetVisible(EFalse);

or..

myLabel->RemoveFromView();

I realise I could just use myLabel->SetTextL(_L("")); but that is not what I want to do.

Thanks :)

adam
  • 22,404
  • 20
  • 87
  • 119

1 Answers1

4

What about MakeVisible(TBool aVisible);

Also read about it in Symbian forum

Riho
  • 4,523
  • 3
  • 33
  • 48