I am trying to hide/move a view in a multiple views control. I did research on web and have tried the following methods. But they did not work. The multiple view control is MultiView1 and the view/tab I want to hide or remove when an item is new is View3
(1)
MultiView1.SetActiveView(View3);
View3.Visible = false;
(2)
MultiView1.Views.Remove(View3);
(3)
MultiView1.Views.RemoveAt(3);
Please advise the what method I should used to solve my issue. Many thanks.