Show() public method

Makes the shelf visible.
public Show ( ) : void
return void
コード例 #1
0
 void ShowShelf2()
 {
     if (_shelf2 != null)
     {
         _shelf2.Show();
     }
 }
コード例 #2
0
 public void ShowSelectedShelf()
 {
     if (_selectedShelf != null)
     {
         _selectedShelf.Show();
     }
 }
コード例 #3
0
 void ShowShelf1()
 {
     if (_shelf1 != null)
     {
         _shelf1.Show();
     }
 }