Sort Score
Result 10 results
Languages All
Labels All
Results 1,771 - 1,780 of 21,637 for

edit

(0.05 sec)
  1. Updating credentials from the macOS Keychain - ...

    You'll need to update your saved credentials in the git-credential-osxkeychain helper if you change your username, password, or personal access token on GitHub.... Edit or delete the entry accordingly...

    docs.github.com/en/get-started/getting-started-...
  2. Editing Documents in Multi-threaded Environment...

    post. Tagged with net, api, groupdocs, Editor.... Report Abuse Editing different types of documents...document editing features plus the document we wish to edit is all...

    dev.to/groupdocs/editing-documents-in-multi-thr...
  3. Organizing members into teams - GitHub Docs

    You can group organization members into teams that reflect your company or group's structure with cascading access permissions and mentions....and organization owners can edit the name and description of...

    docs.github.com/en/organizations/organizing-mem...
  4. Rearrange PDF Pages using C# | Organize with .N...

    Reorder the pages of PDF files using C#. The running example shows how to correct the sequence of unordered PDF pages within the .NET application....most of the time we can not edit the PDF files. When we merge...

    blog.groupdocs.com/merger/move-pdf-pages-using-...
  5. Document Automation APIs on Tumblr - #java

    Posts tagged with #java... Read write and edit PDF Images PSD Autocad EMF AVI...Cloud Newsletter October 2018 edition is now live, bringing together...

    www.tumblr.com/groupdocscom/tagged/java
  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....You are welcome to view and edit metadata of PDF, DOC, DOCX,...

    docs.groupdocs.com/metadata/java/getting-known-...
  7. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs....You are welcome to view and edit metadata of PDF, DOC, DOCX,...

    docs.groupdocs.com/metadata/java/working-with-m...
  8. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document....You are welcome to view and edit metadata of PDF, DOC, DOCX,...

    docs.groupdocs.com/metadata/python-net/get-docu...
  9. 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....You are welcome to view and edit metadata of PDF, DOC, DOCX,...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. Inserting edited worksheet into existing spread...

    This article describes the new feature of the GroupDocs.Editor for .NET version 20.10 - inserting an Edited worksheet into existing spreadsheet...Guide / Edit document / Edit Excel Workbook / Inserting edited worksheet...existing spreadsheet Inserting edited worksheet into existing spreadsheet...

    docs.groupdocs.com/editor/net/inserting-edited-...