Class ComboBoxString
The combobox allows you to display a list of options to the user in a dropdown menu for them to select one.
Inheritance
System.Object
ComboBoxString
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Assembly: UE4DotNet.dll
Syntax
public class ComboBoxString : Widget
Properties
|
Improve this Doc
View Source
bIsFocusable
Declaration
public bool bIsFocusable { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
ContentPadding
Declaration
public Margin ContentPadding { get; }
Property Value
|
Improve this Doc
View Source
DefaultObject
Get UE4 Default Object for this Class
Declaration
public static ComboBoxString DefaultObject { get; }
Property Value
|
Improve this Doc
View Source
EnableGamepadNavigationMode
Declaration
public bool EnableGamepadNavigationMode { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
Font
The default font to use in the combobox, only applies if you're not implementing OnGenerateWidgetEvent
to factory each new entry.
Declaration
public SlateFontInfo Font { get; }
Property Value
|
Improve this Doc
View Source
ForegroundColor
The foreground color to pass through the hierarchy.
Declaration
public SlateColor ForegroundColor { get; }
Property Value
|
Improve this Doc
View Source
HasDownArrow
Declaration
public bool HasDownArrow { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
ItemStyle
Declaration
public TableRowStyle ItemStyle { get; set; }
Property Value
|
Improve this Doc
View Source
MaxListHeight
The max height of the combobox list that opens
Declaration
public float MaxListHeight { get; }
Property Value
Type |
Description |
System.Single |
|
|
Improve this Doc
View Source
StaticClass
Declaration
public static Class StaticClass { get; }
Property Value
|
Improve this Doc
View Source
Declaration
public ComboBoxStyle WidgetStyle { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
AddOption(String)
Declaration
public void AddOption(string Option)
Parameters
Type |
Name |
Description |
System.String |
Option |
|
|
Improve this Doc
View Source
ClearOptions()
Declaration
public void ClearOptions()
|
Improve this Doc
View Source
ClearSelection()
Declaration
public void ClearSelection()
|
Improve this Doc
View Source
FindOptionIndex(String)
Declaration
public int FindOptionIndex(string Option)
Parameters
Type |
Name |
Description |
System.String |
Option |
|
Returns
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
GetOptionAtIndex(Int32)
Declaration
public string GetOptionAtIndex(int Index)
Parameters
Type |
Name |
Description |
System.Int32 |
Index |
|
Returns
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
GetOptionCount()
@return The number of options
Declaration
public int GetOptionCount()
Returns
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
GetSelectedOption()
Declaration
public string GetSelectedOption()
Returns
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
New(UObject, Name)
Spawn an object of this class
Declaration
public static ComboBoxString New(UObject obj = null, Name name = default(Name))
Parameters
Returns
|
Improve this Doc
View Source
RefreshOptions()
Refreshes the list of options.
Declaration
public void RefreshOptions()
|
Improve this Doc
View Source
RemoveOption(String)
Declaration
public bool RemoveOption(string Option)
Parameters
Type |
Name |
Description |
System.String |
Option |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
SetSelectedOption(String)
Declaration
public void SetSelectedOption(string Option)
Parameters
Type |
Name |
Description |
System.String |
Option |
|
Operators
|
Improve this Doc
View Source
Implicit(IntPtr to ComboBoxString)
Convert from IntPtr to UObject
Declaration
public static implicit operator ComboBoxString(IntPtr p)
Parameters
Type |
Name |
Description |
System.IntPtr |
p |
|
Returns