Show / Hide Table of Contents

Class CanvasPanelSlot

Canvas Panel Slot

Inheritance
System.Object
UObject
Visual
PanelSlot
CanvasPanelSlot
Inherited Members
PanelSlot.Parent
PanelSlot.Content
UObject.TransientPackage
UObject.CastTo<T>(UObject)
UObject.CastTo(UObject, Type)
UObject.RemoveObject(UObject)
UObject.MakeObjectArrayField<T>(NativeArray*)
UObject.NotImplemented<T>()
UObject.Construct()
UObject.GetHashCode()
UObject.GetName()
UObject.ToString()
UObject.Name
UObject._None
UObject.None
UObject.ObjPointer
UObject.LoadObjectFromClass(Class, UObject, String, String, LoadFlags, PackageMap, Boolean)
UObject.LoadClass(Class, UObject, String, String, LoadFlags, PackageMap)
UObject.GetPropertyFor<T>(Name)
UObject.ExecuteUbergraph
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)
Namespace: UE4.UMG
Assembly: UE4DotNet.dll
Syntax
public class CanvasPanelSlot : PanelSlot

Properties

| Improve this Doc View Source

bAutoSize

Declaration
public bool bAutoSize { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

DefaultObject

Get UE4 Default Object for this Class

Declaration
public static CanvasPanelSlot DefaultObject { get; }
Property Value
Type Description
CanvasPanelSlot
| Improve this Doc View Source

LayoutData

The anchoring information for the slot

Declaration
public AnchorData LayoutData { get; }
Property Value
Type Description
AnchorData
| Improve this Doc View Source

StaticClass

Get UE4 Class

Declaration
public static Class StaticClass { get; }
Property Value
Type Description
Class
| Improve this Doc View Source

ZOrder

The order priority this widget is rendered in. Higher values are rendered last (and so they will appear to be on top).

Declaration
public int ZOrder { get; }
Property Value
Type Description
System.Int32

Methods

| Improve this Doc View Source

GetAlignment()

Gets the alignment on the slot

Declaration
public Vector2D GetAlignment()
Returns
Type Description
Vector2D
| Improve this Doc View Source

GetAnchors()

Gets the anchors on the slot

Declaration
public Anchors GetAnchors()
Returns
Type Description
Anchors
| Improve this Doc View Source

GetAutoSize()

Gets if the slot to be auto-sized

Declaration
public bool GetAutoSize()
Returns
Type Description
System.Boolean
| Improve this Doc View Source

GetLayout()

Gets the layout data of the slot

Declaration
public AnchorData GetLayout()
Returns
Type Description
AnchorData
| Improve this Doc View Source

GetOffsets()

Gets the offset data of the slot, which could be position and size, or margins depending on the anchor points

Declaration
public Margin GetOffsets()
Returns
Type Description
Margin
| Improve this Doc View Source

GetPosition()

Gets the position of the slot

Declaration
public Vector2D GetPosition()
Returns
Type Description
Vector2D
| Improve this Doc View Source

GetSize()

Gets the size of the slot

Declaration
public Vector2D GetSize()
Returns
Type Description
Vector2D
| Improve this Doc View Source

GetZOrder()

Gets the z-order on the slot

Declaration
public int GetZOrder()
Returns
Type Description
System.Int32
| Improve this Doc View Source

New(UObject, Name)

Spawn an object of this class

Declaration
public static CanvasPanelSlot New(UObject obj = null, Name name = default(Name))
Parameters
Type Name Description
UObject obj
Name name
Returns
Type Description
CanvasPanelSlot
| Improve this Doc View Source

SetAlignment(Vector2D)

Sets the alignment on the slot

Declaration
public void SetAlignment(Vector2D InAlignment)
Parameters
Type Name Description
Vector2D InAlignment
| Improve this Doc View Source

SetAnchors(Anchors)

Sets the anchors on the slot

Declaration
public void SetAnchors(Anchors InAnchors)
Parameters
Type Name Description
Anchors InAnchors
| Improve this Doc View Source

SetAutoSize(Boolean)

Sets if the slot to be auto-sized

Declaration
public void SetAutoSize(bool InbAutoSize)
Parameters
Type Name Description
System.Boolean InbAutoSize
| Improve this Doc View Source

SetLayout(AnchorData)

Sets the layout data of the slot

Declaration
public void SetLayout(AnchorData InLayoutData)
Parameters
Type Name Description
AnchorData InLayoutData
| Improve this Doc View Source

SetOffsets(Margin)

Sets the offset data of the slot, which could be position and size, or margins depending on the anchor points

Declaration
public void SetOffsets(Margin InOffset)
Parameters
Type Name Description
Margin InOffset
| Improve this Doc View Source

SetPosition(Vector2D)

Sets the position of the slot

Declaration
public void SetPosition(Vector2D InPosition)
Parameters
Type Name Description
Vector2D InPosition
| Improve this Doc View Source

SetSize(Vector2D)

Sets the size of the slot

Declaration
public void SetSize(Vector2D InSize)
Parameters
Type Name Description
Vector2D InSize
| Improve this Doc View Source

SetZOrder(Int32)

Sets the z-order on the slot

Declaration
public void SetZOrder(int InZOrder)
Parameters
Type Name Description
System.Int32 InZOrder

Operators

| Improve this Doc View Source

Implicit(IntPtr to CanvasPanelSlot)

Convert from IntPtr to UObject

Declaration
public static implicit operator CanvasPanelSlot(IntPtr p)
Parameters
Type Name Description
System.IntPtr p
Returns
Type Description
CanvasPanelSlot
  • Improve this Doc
  • View Source
Back to top Generated by DocFX