Skip to content

Commit

Permalink
A few lingering comments that need to be removed.
Browse files Browse the repository at this point in the history
  • Loading branch information
datalogics-josepha committed May 26, 2023
1 parent c03accb commit fc2e68b
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 14 deletions.
2 changes: 1 addition & 1 deletion ContentModification/CreateLayer/CreateLayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public static OptionalContentGroup CreateNewOptionalContentGroup(Document doc, s
OptionalContentGroup ocg = new OptionalContentGroup(doc, name);

// Add it to the Order array -- this is required so that the OptionalContentGroup
// will appear in the 'Layers' control panel in Acrobat. It will appear in
// will appear in the 'Layers' control panel in a PDF Viewer. It will appear in
// the control panel with the name given in the OptionalContentGroup constructor.
OptionalContentOrderArray order_list = doc.DefaultOptionalContentConfig.Order;
order_list.Insert(order_list.Length, new OptionalContentOrderLeaf(ocg));
Expand Down
3 changes: 0 additions & 3 deletions Images/DrawSeparations/DrawSeparations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
/*
* This sample demonstrates for drawing a list of grayscale separations from a PDF file.
*
* For more detail see the description of the DrawSeparations sample program on our Developer’s site,
* http://dev.datalogics.com/adobe-pdf-library/sample-program-descriptions/net-core-sample-programs/manipulating-graphics-and-separating-colors-for-images
*
* Copyright (c) 2007-2023, Datalogics, Inc. All rights reserved.
*
*/
Expand Down
3 changes: 0 additions & 3 deletions Images/DrawToBitmap/DrawToBitmap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
*
* This program sample converts a PDF file to a series of image files.
*
* For more detail see the description of the DrawtoBitmap sample program on our Developer’s site,
* http://dev.datalogics.com/adobe-pdf-library/sample-program-descriptions/net-core-sample-programs/converting-pdf-pages-to-images/#drawtobitmap
*
*
* Copyright (c) 2007-2023, Datalogics, Inc. All rights reserved.
*/
Expand Down
2 changes: 1 addition & 1 deletion InformationExtraction/Metadata/Metadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/*
*
* This sample shows how to view and edit metadata for a PDF document. The metadata values appear on the Properties
* window in Adobe Reader and Adobe Acrobat. Click File/Properties, and then click Additional Metadata.
* window in a PDF Viwer. Click File/Properties, and then click Additional Metadata.
*
* Copyright (c) 2007-2023, Datalogics, Inc. All rights reserved.
*
Expand Down
2 changes: 0 additions & 2 deletions Printing/PrintPDF/PrintPDF.cs
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,6 @@ static void Main(string[] args)
// Consult the PostScript Language Document Structuring Conventions
// for more information about the conformance / structure of the
// exported PostScript.
//
// https://partners.adobe.com/public/developer/en/ps/5001.DSC_Spec.pdf

using (PrintUserParams userParams = new PrintUserParams())
{
Expand Down
3 changes: 0 additions & 3 deletions Security/Redactions/Redactions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ static void Main(string[] args)
//
// For a more in-depth example of using the WordFinder, see the TextExtract sample.
//
// The TextExtract sample is described here.
// http://dev.datalogics.com/adobe-pdf-library/sample-program-descriptions/net-sample-programs/extracting-text-from-pdf-files
//

List<Quad> cloudyQuads = new List<Quad>();

Expand Down
2 changes: 1 addition & 1 deletion Text/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Extracts text from a PDF document and displays the extracted words.
Uses a regular expression to find a specified phrase of text in a PDF document.

## ***RegexTextSearch***
Searches for phrases or text patterns in a PDF input document. It supplies sample regular expressions to use in searching for phone numbers, email addresses, or URLs, and you can use them or create your own. You can search the entire PDF document or provide a page range for your search. The program generates an output PDF document that matches the input file except that the search content appears highlighted. You can enter the name of the input file you plan to use, and the name of the output file. The sample uses [PDDocTextFinder](https://dev.datalogics.com/adobe-pdf-library/adobe-pdf-library-c-language-interface/working-with-the-adobe-pdf-library/searching-for-content-in-a-pdf-document/) to find instances of a phrase or pattern in a PDF input document.
Searches for phrases or text patterns in a PDF input document. It supplies sample regular expressions to use in searching for phone numbers, email addresses, or URLs, and you can use them or create your own. You can search the entire PDF document or provide a page range for your search. The program generates an output PDF document that matches the input file except that the search content appears highlighted. You can enter the name of the input file you plan to use, and the name of the output file. The sample uses PDDocTextFinder to find instances of a phrase or pattern in a PDF input document.

The sample normally highlights search text with a box that surrounds the entire phrase found. But if the search text is on multiple lines, or if the font changes within the phrase, the content appears in multiple boxes.

Expand Down

0 comments on commit fc2e68b

Please sign in to comment.