Class UserInfo
A class that holds information for an user in the task board.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.TaskBoard
Assembly: Telerik.WinControls.UI.dll
Syntax
public class UserInfo
Constructors
UserInfo()
Declaration
public UserInfo()
Properties
Avatar
User's avatar.
Declaration
public Image Avatar { get; set; }
Property Value
System.Drawing.Image
|
BackColor
Gets or sets the color that will be used as background with the initials of the user in the avatar.
Declaration
public Color? BackColor { get; set; }
Property Value
System.Nullable<System.Drawing.Color>
|
FirstName
First Name.
Declaration
public string FirstName { get; set; }
Property Value
System.String
|
ForeColor
Gets or sets the color that will be used as foreground with the initials of the user in the avatar.
Declaration
public Color? ForeColor { get; set; }
Property Value
System.Nullable<System.Drawing.Color>
|
Initials
Initials. If not set, tries to construct initals from the first and last name.
Declaration
public string Initials { get; set; }
Property Value
System.String
|
LastName
Last Name.
Declaration
public string LastName { get; set; }
Property Value
System.String
|
MiddleName
Middle Name.
Declaration
public string MiddleName { get; set; }
Property Value
System.String
|
SvgAvatar
User's svg avatar.
Declaration
public RadSvgImage SvgAvatar { get; set; }
Property Value
RadSvgImage
|
Methods
ToString()
Declaration
public override string ToString()
Returns
System.String
|