Ejemplo n.º 1
0
 // Token: 0x06002804 RID: 10244 RVA: 0x000E2978 File Offset: 0x000E0B78
 protected void RenderProfileArea()
 {
     if (ContactUtilities.GetDefaultFileAs() != FileAsMapping.LastCommaFirst)
     {
         if (this.isPhoneticNamesEnabled)
         {
             this.RenderTextProperty(ContactUtilities.YomiLastName);
         }
         this.RenderTextProperty(ContactUtilities.SurName);
         if (this.isPhoneticNamesEnabled)
         {
             this.RenderTextProperty(ContactUtilities.YomiFirstName);
         }
         this.RenderTextProperty(ContactUtilities.GivenName);
         if (!this.isPhoneticNamesEnabled)
         {
             this.RenderTextProperty(ContactUtilities.MiddleName);
         }
     }
     else
     {
         if (this.isPhoneticNamesEnabled)
         {
             this.RenderTextProperty(ContactUtilities.YomiFirstName);
         }
         this.RenderTextProperty(ContactUtilities.GivenName);
         if (!this.isPhoneticNamesEnabled)
         {
             this.RenderTextProperty(ContactUtilities.MiddleName);
         }
         if (this.isPhoneticNamesEnabled)
         {
             this.RenderTextProperty(ContactUtilities.YomiLastName);
         }
         this.RenderTextProperty(ContactUtilities.SurName);
     }
     this.RenderFileAs();
     this.RenderSeparator();
     this.RenderTextProperty(ContactUtilities.Title);
     this.RenderTextProperty(ContactUtilities.OfficeLocation);
     this.RenderTextProperty(ContactUtilities.Department);
     if (this.isPhoneticNamesEnabled)
     {
         this.RenderTextProperty(ContactUtilities.CompanyYomi);
     }
     this.RenderTextProperty(ContactUtilities.CompanyName);
     this.RenderTextProperty(ContactUtilities.Manager);
     this.RenderTextProperty(ContactUtilities.AssistantName);
 }