_ContactItem.LastFirstAndSuffix Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a String (string in C#) representing the last name, first name, middle name, and suffix of the contact. Read-only.
public:
property System::String ^ LastFirstAndSuffix { System::String ^ get(); };
public string LastFirstAndSuffix { get; }
Public ReadOnly Property LastFirstAndSuffix As String
Property Value
Remarks
There is a comma between the last and first names and spaces between all the names and the suffix. This property is parsed from the LastName, FirstName, MiddleName and Suffix properties. The LastName, FirstName, and Suffix properties are themselves parsed from the FullName property. The value of this property is only filled when it’s 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.