public static DocumentRangeFormattingOptions Of(IDocumentRangeFormattingOptions options)
 {
     return(new DocumentRangeFormattingOptions()
     {
         WorkDoneProgress = options.WorkDoneProgress,
     });
 }
 public static DocumentRangeFormattingOptions Of(IDocumentRangeFormattingOptions options, IEnumerable <IHandlerDescriptor> descriptors)
 {
     return(new DocumentRangeFormattingOptions()
     {
         WorkDoneProgress = options.WorkDoneProgress,
     });
 }