예제 #1
0
 public void SetSmaller()
 {
     VGUIPanel.SetSmaller();
 }
예제 #2
0
 public void SetCompact()
 {
     VGUIPanel.SetCompact();
 }
예제 #3
0
 public void SetTitle(string description)
 {
     VGUIPanel.SetTitle(description);
 }
예제 #4
0
 public void SetMedium()
 {
     VGUIPanel.SetMedium();
 }
예제 #5
0
 public void SetLight()
 {
     VGUIPanel.SetLight();
 }
예제 #6
0
 public void ChooseOption(string value, int index)
 {
     VGUIPanel.ChooseOption(value, index);
 }
예제 #7
0
 public void AddTab(string text, Panel panel, int wide)
 {
     VGUIPanel.AddTab(text, panel.VGUIPanel, wide);
 }
예제 #8
0
 public void SetTitle(string title)
 {
     VGUIPanel.SetTitle(title);
 }
예제 #9
0
 public void SwitchTab(Panel tab, Panel panel)
 {
     VGUIPanel.SwitchTab(tab.VGUIPanel, panel.VGUIPanel);
 }
예제 #10
0
 public void AddTab(string text, object icon, Panel panel, bool bottomAlign = false, int[] iconSize = null)
 {
     VGUIPanel.AddTab(text, icon, panel.VGUIPanel, bottomAlign, iconSize);
 }
예제 #11
0
 public void SelectTab(Panel tab)
 {
     VGUIPanel.SelectTab(tab.VGUIPanel);
 }
예제 #12
0
 public void SetActive(bool active)
 {
     VGUIPanel.SetActive(active);
 }
예제 #13
0
 public void SetFadeSpeed(float speed)
 {
     VGUIPanel.SetFadeSpeed(speed);
 }
예제 #14
0
 public void SetColor(Color color)
 {
     VGUIPanel.SetColor(color.ToGmodColor());
 }
예제 #15
0
 public void SelectTab(int index)
 {
     VGUIPanel.SelectTab(index);
 }
예제 #16
0
 public void AddElement(string title, string element, int height, bool noCell)
 {
     VGUIPanel.AddElement(title, element, height, noCell);
 }
예제 #17
0
 public void SetFont(string font)
 {
     VGUIPanel.SetFont(font);
 }