TabDialogButton.Load
Declaration#
public void Load(Sprite image, string text, string tooltip)Parameters#
| Name | Description |
|---|---|
| image | Image to display |
| text | Text to display |
| tooltip | Tooltip to display |
Description#
Load tab
Usage#
Example
using NullSave.GDTK.UIPro;using UnityEngine;
public class Example : MonoBehaviour{ public void ExampleMethod(TabDialogButton target) { target.Load(null, "No Image", ""); }}