Class GridSlot
A slot for UGridPanel, these slots all share the same size as the largest slot
in the grid.
Inheritance
System.Object
GridSlot
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 GridSlot : PanelSlot
Properties
|
Improve this Doc
View Source
Column
The column index of the cell this slot is in
Declaration
public int Column { get; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
ColumnSpan
Declaration
public int ColumnSpan { get; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
DefaultObject
Get UE4 Default Object for this Class
Declaration
public static GridSlot DefaultObject { get; }
Property Value
|
Improve this Doc
View Source
HorizontalAlignment
The alignment of the object horizontally.
Declaration
public byte HorizontalAlignment { get; }
Property Value
Type |
Description |
System.Byte |
|
|
Improve this Doc
View Source
Layer
Positive values offset this cell to be hit-tested and drawn on top of others. Default is 0; i.e. no offset.
Declaration
public int Layer { get; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Nudge
Offset this slot's content by some amount; positive values offset to lower right
Declaration
public Vector2D Nudge { get; }
Property Value
|
Improve this Doc
View Source
Padding
The padding area between the slot and the content it contains.
Declaration
public Margin Padding { get; }
Property Value
|
Improve this Doc
View Source
Row
The row index of the cell this slot is in
Declaration
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
RowSpan
Declaration
public int RowSpan { get; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
StaticClass
Declaration
public static Class StaticClass { get; }
Property Value
|
Improve this Doc
View Source
VerticalAlignment
The alignment of the object vertically.
Declaration
public byte VerticalAlignment { get; }
Property Value
Type |
Description |
System.Byte |
|
Methods
|
Improve this Doc
View Source
New(UObject, Name)
Spawn an object of this class
Declaration
public static GridSlot New(UObject obj = null, Name name = default(Name))
Parameters
Returns
|
Improve this Doc
View Source
SetColumn(Int32)
Sets the column index of the slot, this determines what cell the slot is in the panel
Declaration
public void SetColumn(int InColumn)
Parameters
Type |
Name |
Description |
System.Int32 |
InColumn |
|
|
Improve this Doc
View Source
SetColumnSpan(Int32)
How many columns this slot spans over
Declaration
public void SetColumnSpan(int InColumnSpan)
Parameters
Type |
Name |
Description |
System.Int32 |
InColumnSpan |
|
|
Improve this Doc
View Source
SetHorizontalAlignment(Byte)
Declaration
public void SetHorizontalAlignment(byte InHorizontalAlignment)
Parameters
Type |
Name |
Description |
System.Byte |
InHorizontalAlignment |
|
|
Improve this Doc
View Source
SetLayer(Int32)
Sets positive values offset this cell to be hit-tested and drawn on top of others.
Declaration
public void SetLayer(int InLayer)
Parameters
Type |
Name |
Description |
System.Int32 |
InLayer |
|
|
Improve this Doc
View Source
SetPadding(Margin)
Declaration
public void SetPadding(Margin InPadding)
Parameters
Type |
Name |
Description |
Margin |
InPadding |
|
|
Improve this Doc
View Source
SetRow(Int32)
Sets the row index of the slot, this determines what cell the slot is in the panel
Declaration
public void SetRow(int InRow)
Parameters
Type |
Name |
Description |
System.Int32 |
InRow |
|
|
Improve this Doc
View Source
SetRowSpan(Int32)
How many rows this this slot spans over
Declaration
public void SetRowSpan(int InRowSpan)
Parameters
Type |
Name |
Description |
System.Int32 |
InRowSpan |
|
|
Improve this Doc
View Source
SetVerticalAlignment(Byte)
Declaration
public void SetVerticalAlignment(byte InVerticalAlignment)
Parameters
Type |
Name |
Description |
System.Byte |
InVerticalAlignment |
|
Operators
|
Improve this Doc
View Source
Implicit(IntPtr to GridSlot)
Convert from IntPtr to UObject
Declaration
public static implicit operator GridSlot(IntPtr p)
Parameters
Type |
Name |
Description |
System.IntPtr |
p |
|
Returns