Sort Score
Result 10 results
Languages All
Labels All
Results 2,291 - 2,300 of 10,066 for

new

(0.09 sec)
  1. In-Table Master-Detail in Spreadsheet Document ...

    Note In this article, we will use GroupDocs.Assembly to generate In-TableMaster-Detail report in Spreadsheet Document format. Note The code uses some of the objects defined in The Business Layer. In-Table Master-Detail in Microsoft Excel Document Creating a In-Table Master-Detail Practising the following steps you can create In-Table Master-Detail Template in MS Excel 2013. Add a New Workbook. Select the range of cells that you want to include in the table....Consulting Blog Knowledge Base New Releases Status Websites aspose...Template in MS Excel 2013. Add a new Workbook. Select the range of...

    docs.groupdocs.com/assembly/java/in-table-maste...
  2. Inserting Chart Axis Title Dynamically in Prese...

    Note The code uses some of the objects defined in The Business Layer. Note This feature is supported by version 18.1 or greater. Column Chart in Microsoft PowerPoint Document Creating a Column Chart Please follow below steps to create a column chart in MS PowerPoint 2013: Create a New presentation slide Click the “Insert” tab, and then click “Chart” in the illustrations group to open the “Insert Chart” dialogue box Select “Column” in the sidebar, you will see a gallery of charts Select the “100% Stacked Column” and press “OK” to insert the chart and Worksheet template to your document Edit the Worksheet with your data to update the chart Save your Document Reporting Requirement As a report developer, you are required to share orders quantity of the customers dynamically with the following key requirements:...Consulting Blog Knowledge Base New Releases Status Websites aspose...MS PowerPoint 2013: Create a new presentation slide Click the...

    docs.groupdocs.com/assembly/net/inserting-chart...
  3. Classes with similar names are not overwritten ...

    Keeping customers feedback in view, we are pleased to announce GroupDocs.Comparison for Java 17.3.2. In earlier version of the API, there were classes with similar names. Hence, in some applications, when API was loaded, classes with similar names were overwritten. This issue is now resolved. We’d recommend you to Download the New release and enhance your document comparison experience. GroupDocs.Comparison for Java 17.3.2 - Bug Fixes Classes with similar names are overwritten Available Channels and ResourcesHere are a few channels and resources for you to download, learn, try and get technical support on GroupDocs....recommend you to Download the new release and enhance your document...

    blog.groupdocs.com/comparison/classes-with-simi...
  4. Merge archives | Documentation

    Learn how to merge archive files, combine archive files into one file programmatically in Node.js via Java language using GroupDocs.Merger for Node.js via Java library....Consulting Blog Knowledge Base New Releases Status Websites aspose...sample1 . zip ` ; const merger = new groupdocs . merger . Merger (...

    docs.groupdocs.com/merger/nodejs-java/merge/arc...
  5. Extract text from HTML documents | Documentation

    To extract a text from HTML documents GetText method is used. This method allows to extract a text from the entire document. Pagination and raw mode is not supported for emails....Consulting Blog Knowledge Base New Releases Status Websites aspose...class using ( Parser parser = new Parser ( filePath )) { // Extract...

    docs.groupdocs.com/parser/net/extract-text-from...
  6. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata metadata = New Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Consulting Blog Knowledge Base New Releases Status Websites aspose...GettingKnownProperty try ( Metadata metadata = new Metadata ( Constants . InputDoc...

    docs.groupdocs.com/metadata/java/getting-known-...
  7. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information. Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata metadata = New Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); 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); } Working with XMP Metadata GroupDocs....Consulting Blog Knowledge Base New Releases Status Websites aspose...using ( Metadata metadata = new Metadata ( Constants . InputGif...

    docs.groupdocs.com/metadata/net/working-with-me...
  8. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors JavaScript const metadata = New groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iNew Releases Status Websites aspose...JavaScript const metadata = new groupdocs . metadata . Metadata...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  9. Common Master-Detail Image in Email Document | ...

    Note In this article, we will use GroupDocs.Assembly to generate a Common Master-Detail report in Email Document format. Common Master-Detail in Email Document Creating a Common Master-Detail Please follow below steps to create Common Master-Detail Template in MS Outlook 2013: Create a New Email. Insert two shapes, one for holding image and other for holding other details. Save the Email. Reporting Requirement As a report developer, you are required to represent the information of the managers and clients with the following key requirements:...Consulting Blog Knowledge Base New Releases Status Websites aspose...in MS Outlook 2013: Create a new Email. Insert two shapes, one...

    docs.groupdocs.com/assembly/java/common-master-...
  10. Get document info | Documentation

    This article shows how to get the basic document info....Consulting Blog Knowledge Base New Releases Status Websites aspose...class try ( Parser parser = new Parser ( Constants . SampleDocx...

    docs.groupdocs.com/parser/java/get-document-info/