TabDialog.RemoveTabAt
Declaration#
public void RemoveTabAt(Int32 index)Parameters#
| Name | Description |
|---|---|
| index | Index of tab to remove |
Description#
Remove a tab
Usage#
Example
using NullSave.GDTK.UIPro;using UnityEngine;
public class Example : MonoBehaviour{ public void ExampleMethod(TabDialog target) { target.RemoveTabAt(0); }}