Example #1
0
        public FSlateColor GetSlateValue()
        {
            CheckIsValid();
            FSlateColor ___ret = GetSlateValue(_this.Get());

            return(___ret);
        }
Example #2
0
/// <summary>
/// Sets the foreground color of the widget, this is inherited by sub widgets.  Any color property
/// that is marked as inherit will use this color.
/// @param InForegroundColor     The foreground color.
/// </summary>
        public void SetForegroundColor(FSlateColor InForegroundColor)
        {
            CheckIsValid();
            SetForegroundColor(_this.Get(), ref InForegroundColor);
        }
Example #3
0
 extern static void SetForegroundColor(IntPtr _this, ref FSlateColor InForegroundColor);
Example #4
0
 public extern void SetForegroundColor(FSlateColor InForegroundColor);
Example #5
0
/// <summary>
/// Sets the color and opacity of the text in this text block
/// @param InColorAndOpacity             The new text color and opacity
/// </summary>
        public void SetColorAndOpacity(FSlateColor InColorAndOpacity)
        {
            CheckIsValid();
            SetColorAndOpacity(_this.Get(), ref InColorAndOpacity);
        }
Example #6
0
 extern static void SetColorAndOpacity(IntPtr _this, ref FSlateColor InColorAndOpacity);
Example #7
0
 /// <summary>
 /// Sets the color and opacity of the text in this text block
 /// @param InColorAndOpacity             The new text color and opacity
 /// </summary>
 public extern void SetColorAndOpacity(FSlateColor InColorAndOpacity);