Class TMP_Dropdown.OptionData
Namespace: TMPro
Syntax
[Serializable]
public class OptionData
Constructors
OptionData()
Declaration
public OptionData()
OptionData(String)
Declaration
public OptionData(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| String | text |
OptionData(String, Sprite, Color)
Create an object representing a single option for the dropdown list.
Declaration
public OptionData(string text, Sprite image, Color color)
Parameters
| Type | Name | Description |
|---|---|---|
| String | text | Optional text for the option. |
| Sprite | image | Optional image for the option. |
| Color | color |
OptionData(Sprite)
Declaration
public OptionData(Sprite image)
Parameters
| Type | Name | Description |
|---|---|---|
| Sprite | image |
Properties
color
The color associated with the option.
Declaration
public Color color { get; set; }
Property Value
| Type | Description |
|---|---|
| Color |
image
The image associated with the option.
Declaration
public Sprite image { get; set; }
Property Value
| Type | Description |
|---|---|
| Sprite |
text
The text associated with the option.
Declaration
public string text { get; set; }
Property Value
| Type | Description |
|---|---|
| String |