/// <summary> /// Sets a BoxComponent to the BubbleContainer footer /// </summary> /// <param name="self">BubbleContainer</param> /// <param name="footer">BoxComponent</param> /// <returns>BubbleContainer</returns> public static BubbleContainer SetFooter(this BubbleContainer self, BoxComponent footer) { self.Footer = footer; return(self); }
/// <summary> /// Sets a BoxComponent to the BubbleContainer body /// </summary> /// <param name="self">BubbleContainer</param> /// <param name="body">Box Component</param> /// <returns>BubbleContainer</returns> public static BubbleContainer SetBody(this BubbleContainer self, BoxComponent body) { self.Body = body; return(self); }
/// <summary> /// Sets a BoxComponent to the BubbleContainer header /// </summary> /// <param name="self">BubbleContainer</param> /// <param name="header">BoxComponent</param> /// <returns>BubbleContainer</returns> public static BubbleContainer SetHeader(this BubbleContainer self, BoxComponent header) { self.Header = header; return(self); }