Sort Score
Result 10 results
Languages All
Labels All
Results 2,181 - 2,190 of 5,131 for

groupdocs.viewer,

(0.07 sec)
  1. Ինչպես փոխարկել MHTML-ը HTML-ի՝ օգտագործելով C#

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

    kb.groupdocs.com/hy/conversion/net/how-to-conve...
  2. Ինչպես փոխարկել XML-ը CSV-ի Java-ում

    Եկեք արագ նայենք, թե ինչպես փոխարկել XML-ը CSV-ի Java-ում և ինչպես գրել Java կոդը՝ XML-ը CSV-ի փոխարկելու համար փաստաթղթերի փոխակերպման համար:...Եկեք արագ նայենք, թե ինչպես փոխարկել XML-ը CSV-ի Java-ում և ինչպես գրել Java կոդը՝ XML-ը CSV-ի փոխարկելու համար փաստաթղթերի փոխակերպման համար:

    kb.groupdocs.com/hy/conversion/java/how-to-conv...
  3. Ինչպես փոխարկել HTML-ը Excel-ի Java-ի միջոցով

    Եկեք սովորենք փաստաթղթերի փոխակերպման գործընթացը և Java-ի միջոցով փոխարկենք HTML-ը Excel-ի: Հեշտությամբ կիրառեք այս ուղեցույցը՝ Java HTML-ից Excel փոխարկիչ հատկությունը զարգացնելու համար:...Եկեք սովորենք փաստաթղթերի փոխակերպման գործընթացը և Java-ի միջոցով փոխարկենք HTML-ը Excel-ի: Հեշտությամբ կիրառեք այս ուղեցույցը՝ Java HTML-ից Excel փոխարկիչ հատկությունը զարգացնելու համար:

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

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

    kb.groupdocs.com/hy/conversion/net/how-to-conve...
  5. How to Add Watermark in Word using C#

    This short article focus on how to add watermark in Word using C#. It's a step-by-step instructions with sample code to insert watermark in Word using C#....This short article focus on how to add watermark in Word using C#. It's a step-by-step instructions with sample code to insert watermark in Word using C#.

    kb.groupdocs.com/annotation/net/how-to-add-wate...
  6. How to Compare Word Documents using C#

    This article describes the procedure to compare Word documents using C# and how to write the code in C# to compare two Word documents and highlight differences....This article describes the procedure to compare Word documents using C# and how to write the code in C# to compare two Word documents and highlight differences.

    kb.groupdocs.com/comparison/net/how-to-compare-...
  7. Categories

    查找API的答案 GroupDocs.Total Product Family GroupDocs.Conversion Product Family GroupDocs.Annotation Product Family Group......查找API的答案 GroupDocs.Total Product Family GroupDocs.Conversion Product Family GroupDocs.Annotation Product Family Group...

    kb.groupdocs.com/zh/categories/page/33/
  8. Load document from stream | Documentation

    There might be cases when the document is presented only as a stream (without a copy on the local disk). To avoid the overhead of saving documents to the disk, GroupDocs.Parser enables to extract data from streams directly. The following example shows how to load the document from the stream: // Create the stream try (InputStream stream = new FileInputStream(Constants.SamplePdf)) { // Create an instance of Parser class with the stream try (Parser parser = new Parser(stream)) { // Extract a text into the reader try (TextReader reader = parser....There might be cases when the document is presented only as a stream (without a copy on the local disk). To avoid the overhead of saving documents to the disk, GroupDocs.Parser enables to extract data from streams directly. The following example shows how to load the document from the stream: // Create the stream try (InputStream stream = new FileInputStream(Constants.SamplePdf)) { // Create an instance of Parser class with the stream try (Parser parser = new Parser(stream)) { // Extract a text into the reader try (TextReader reader = parser.

    docs.groupdocs.com/parser/java/load-document-fr...
  9. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document....GroupDocs.Metadata allows users to get meta information of a document.

    docs.groupdocs.com/metadata/python-net/get-docu...
  10. Extracting Common Image Information | Documenta...

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.ImageReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.ImageReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage<ImageRootPackage>(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } 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/extracting-comm...