_ContactItem.LastFirstNoSpace Property

Definition

Returns a String (string in C#) representing the concatenated last name, first name, and middle name of the contact with no space between the last name and the first name. Read-only.

public:
 property System::String ^ LastFirstNoSpace { System::String ^ get(); };
public string LastFirstNoSpace { get; }
Public ReadOnly Property LastFirstNoSpace As String

Property Value

Remarks

This property is parsed from the LastName, FirstName, and MiddleName properties. The LastName, FirstName, and MiddleName properties are themselves parsed from the FullName property. The value of this property is only filled when its associated property (FirstName, LastName, MiddleName, CompanyName, and Suffix) contain Asian (DBCS) characters. If the corresponding field does not contain Asian characters, the property will be empty.

Applies to