/// <summary>
 ///     Set a conversion profile property using two strings: One for the name (i.e. PdfSettings.Security.Enable) and one
 ///     for the value
 /// </summary>
 /// <param name="name">Name of the setting. This can include subproperties (i.e. PdfSettings.Security.Enable)</param>
 /// <param name="value">A string that can be parsed to the type</param>
 public void SetProfileSetting(string name, string value)
 {
     _printJobAdapter.SetProfileSetting(name, value);
 }
Esempio n. 2
0
 /// <summary>
 ///     Set a conversion profile property using two strings: One for the name (i.e. PdfSettings.Security.Enable) and one
 ///     for the value
 /// </summary>
 /// <param name="name">Name of the setting. This can include subproperties (i.e. PdfSettings.Security.Enable)</param>
 /// <param name="value">A string that can be parsed to the type</param>
 public void SetProfileSetting(string name, string value)
 {
     _printJobAdapter.SetProfileSetting(name, value);
     SortAndUpdateActions();
 }