Sort Score
Result 10 results
Languages All
Labels All
Results 1,561 - 1,570 of 4,676 for

groupdocs.total,

(0.2 sec)
  1. Ինչպես փոխարկել HTML-ը RTF-ի C#-ում

    Այս արագ ձեռնարկում, մենք կբացատրենք HTML-ը RTF-ի C#-ում փոխարկելու քայլերը և ինչպես կիրառել C# HTML-ը RTF-ի գործառույթը՝ օգտագործելով այս ուղեցույցը:...Այս արագ ձեռնարկում, մենք կբացատրենք HTML-ը RTF-ի C#-ում փոխարկելու քայլերը և ինչպես կիրառել C# HTML-ը RTF-ի գործառույթը՝ օգտագործելով այս ուղեցույցը:

    kb.groupdocs.com/hy/conversion/net/how-to-conve...
  2. Ինչպես փոխարկել SVG-ն PDF-ի C#-ով

    Այս հոդվածը բացատրում է SVG-ն PDF-ի C#-ով փոխարկելու մանրակրկիտ ընթացակարգը և սովորելու, թե ինչպես զարգացնել C# SVG-ի PDF փոխարկիչի ֆունկցիոնալությունը:...Այս հոդվածը բացատրում է SVG-ն PDF-ի C#-ով փոխարկելու մանրակրկիտ ընթացակարգը և սովորելու, թե ինչպես զարգացնել C# SVG-ի PDF փոխարկիչի ֆունկցիոնալությունը:

    kb.groupdocs.com/hy/conversion/net/how-to-conve...
  3. Ինչպես փոխարկել TXT-ը DOCX-ի C#-ի միջոցով

    Այս հոդվածում դուք կստանաք ուղեցույց, թե ինչպես փոխարկել TXT-ը DOCX-ի C#-ի միջոցով, ներառյալ կոդի օրինակ՝ ցանկացած օպերացիոն համակարգում TXT-ին DOCX C#-ով արտահանելու համար:...Այս հոդվածում դուք կստանաք ուղեցույց, թե ինչպես փոխարկել TXT-ը DOCX-ի C#-ի միջոցով, ներառյալ կոդի օրինակ՝ ցանկացած օպերացիոն համակարգում TXT-ին DOCX C#-ով արտահանելու համար:

    kb.groupdocs.com/hy/conversion/net/how-to-conve...
  4. Get document Info | Documentation

    This artcle explains how to get document information...This artcle explains how to get document information

    docs.groupdocs.com/watermark/java/get-document-...
  5. GroupDocs.Watermark for Python overview | Docum...

    GroupDocs.Watermark for .NET is a powerful API for managing watermarks in the various documents formats such as PDF, DOCX/DOC/RTF, PPTX/PPT, XLSX/XLS, JPG, PNG, TIFF, GIF and many others....GroupDocs.Watermark for .NET is a powerful API for managing watermarks in the various documents formats such as PDF, DOCX/DOC/RTF, PPTX/PPT, XLSX/XLS, JPG, PNG, TIFF, GIF and many others.

    docs.groupdocs.com/watermark/python-net/product...
  6. Fluent syntax | Documentation

    This article describes how to use fluent syntax notation in GroupDocs.Conversion for .NET API....This article describes how to use fluent syntax notation in GroupDocs.Conversion for .NET API.

    docs.groupdocs.com/conversion/net/fluent-syntax/
  7. In-Table Master-Detail in HTML Document | Docum...

    Note In this article, we will use GroupDocs.Assembly to generate In-TableMaster-Detail report in HTML Document format. Note The code uses some of the objects defined in The Business Layer. In-Table Master-Detail in HTML Document Reporting Requirement As a report developer, you are required to represent the following key requirements: Report must show each manager along with his total contract prices. It must also show each individual client within the contract....Note In this article, we will use GroupDocs.Assembly to generate In-TableMaster-Detail report in HTML Document format. Note The code uses some of the objects defined in The Business Layer. In-Table Master-Detail in HTML Document Reporting Requirement As a report developer, you are required to represent the following key requirements: Report must show each manager along with his total contract prices. It must also show each individual client within the contract.

    docs.groupdocs.com/assembly/java/in-table-maste...
  8. Protect PDF document | Documentation

    Secure PDF output with passwords and permissions when rendering documents using GroupDocs.Viewer....Secure PDF output with passwords and permissions when rendering documents using GroupDocs.Viewer.

    docs.groupdocs.com/viewer/python-net/protect-pd...
  9. Clean metadata | Documentation

    This artcle explains how to remove all or clean metadata properties without applying any filters. The best way to do this is to use the Sanitize method....This artcle explains how to remove all or clean metadata properties without applying any filters. The best way to do this is to use the Sanitize method.

    docs.groupdocs.com/metadata/net/clean-metadata/
  10. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputBmp)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP image Get the root metadata package Extract the native metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputBmp)) { var root = metadata.GetRootPackage<BmpRootPackage>(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:

    docs.groupdocs.com/metadata/net/working-with-bm...