oFax = mRightFaxComServer.Faxes[faxFileInfo.RightFaxSettings.RightFaxServerObject].Create;
oFax.OwnerID = faxFileInfo.RightFaxSettings.OwnerId;
oFax.ToName = recipientDetails.RecipientName;
oFax.ToFaxNumber = recipientDetails.FaxNumber;
oFax.FromName = recipientDetails.SenderName;
oFax.Attachments.Add(fileName);
oFax.NeedsPDFConversion = true;
oFax.isFineMode = true;
oFax.NeedsPreScan = true;
oFax.CoverSheetNotes[1] = recipientDetails.Notes;
これらの行はカバー シートのメモを送信するために追加されましたが、カバー シートのメモの数を確認できません。上記のコードはバージョン 9.6 で期待どおりに動作します