public StampSettingsWord(StampIdentifier id, string personId, PdfNamingTypeApplication pdfNamingType,
                          StampPaperSizeType paperSize, StampOrientationType orientationType, bool useDefaultSignature)
     : base(id, personId, pdfNamingType, useDefaultSignature)
 {
     PaperSize   = paperSize;
     Orientation = orientationType;
 }
 /// <summary>
 /// Установить тип поворота
 /// </summary>
 public void SetPrintingOrientation(StampOrientationType orientation) =>
 Application.CadInputQueue.SendCommand($"PRINT orientation {orientation.ToString().ToLowerCaseCurrentCulture()}");