The NameLabel control is initialized with the following code:
<sl:NameLabel x:Name="NameLabelControl" GivenName="Thelma" FamilyName="Cordero" Title="Ms"
FontFamily="Verdana" FontSize="12" />
<sl:NameLabel x:Name="NameLabelControl1" FamilyName="Cordero" Title="Ms" GivenName=""
FontFamily="Verdana" FontSize="12" />
- DisplayValue – gets the correctly-formatted aggregate value
of the patient’s name
- FamilyName – gets or sets the family name
- GivenName – gets or sets the given name
- Title – gets or sets the patient's title
- FamilyName has a default value of "FamilyName"
- GivenName has a default value of "GivenName"
- Title has default value of "(Title)"
The maximum displayed length of:
- DisplayValue is 120 characters
- FamilyName is 40 characters
- GivenName is 40 characters
- Title is 35 characters
If a data element is assigned data that exceeds these limits, the data should be
truncated to:
- 40 characters plus an ellipsis for FamilyName and GivenName
- 35 characters plus an ellipsis for Title
If partial data is entered, the following display formats are accepted:
- FamilyName, GivenName
- FamilyName
- FamilyName (Title), with no comma delimit between FamilyName and Title
- GivenName
- GivenName (Title)
If the first element to be provided is Title, it should only be displayed in conjunction
with either FamilyName or GivenName.