Sort Score
Result 10 results
Languages All
Labels All
Results 21 - 30 of 3,300 for

view

(0.01 sec)
  1. Apps, On Premise & Cloud Solutions for Managing...

    Build applications to manage Microsoft Project tasks, using On Premise APIs or Cloud-based SDKs. Or use our cross-platform apps to View or convert tasks....Format Solution Use our Apps to view & convert project files or build...Include Aspose.Tasks Viewer View an image representation of your...

    products.aspose.app/tasks
  2. Apps, On Premise & Cloud Solutions to Process V...

    Create, process & convert Microsoft Visio drawings via On Premise APIs or Cloud-based SDKs. Or use our cross-platform apps to View or convert Visio files....Format Solution Use our Apps to view or convert Microsoft Visio drawings...diagram to view it as an image. Supports viewing VSD, VSDX, VSX...

    products.aspose.app/diagram
  3. flatopctemplate

    flatopcmacroenabled,Supported File Formats|Aspose Words Cloud Docs,Aspose.Words Cloud 22.12.0 | Java SDK to Process Word Formats,Aspose.Words Cloud 22.8.0 |...to create, edit, convert, & view Word & OpenOffice documents...to create, edit, convert, & view Word & OpenOffice documents...

    search.aspose.cloud/q/flatopctemplate.html
  4. docpreword60

    Supported File Formats|Aspose Words Cloud Docs,Aspose.Words Cloud | Java SDK to Process Cloud Documents,Aspose.Words Cloud 23.1.0 | Java SDK to Process Word...to create, edit, convert, & view Word & OpenOffice documents...to create, edit, convert, & view Word & OpenOffice documents...

    search.aspose.cloud/q/docpreword60.html
  5. parse

    parse,Parse PDF | Online and Free | Aspose.PDF,csv-parse - npm,GitHub - saulhardman/parse-css-custom-properties: Parse CSS Custom Properties from CSS... Free message apps to view, convert, parse email... Free...email formats, Parse , merge & view emails, edit metadata. Text...

    search.aspose.cloud/q/parse.html
  6. Apps, On Premise & Cloud Solution for Word File...

    Create Word file manipulation applications using On Premise or Cloud APIs, or simply use cross-platform apps to View, compare, edit or convert Word documents....Words Viewer View Microsoft Word documents in...favorite browser from anywhere. View All No Code Apps Aspose.Words...

    products.aspose.app/words/
  7. index.xml

    2.0 http://www.w3.org/2005/Atom – Java Cloud SDK to View & Convert Microsoft Visio Flowcharts https://products.aspose.cloud/diagram/java/ Recent content in Java Cloud SDK to View & Convert Microsof......org/2005/Atom – Java Cloud SDK to View & Convert Microsoft Visio Flowcharts...content in Java Cloud SDK to View & Convert Microsoft Visio Flowcharts...

    products.aspose.cloud/diagram/java/index.xml
  8. index.xml

    2.0 http://www.w3.org/2005/Atom – Create, View & Convert Visio Files using cURL (via REST API) https://products.aspose.cloud/diagram/curl/ Recent content in Create, View & Convert Visio Files using......org/2005/Atom – Create, View & Convert Visio Files using...cloud/diagram/curl/ Recent content in Create, View & Convert Visio Files using...

    products.aspose.cloud/diagram/curl/index.xml
  9. Class Inheritance | InterviewBit

    Class Inheritance - Inheritance The process by which one class acquires the properties(data members) and functionalities(methods) of another class is called inheritance. The aim of inheritance is to provide the reusability of code so that a class has to write only the unique features and rest of the common properties and functionalities can be extended from the another class. Class inheritance is a way for one class to extend another class. So we can create new functionality on top of the existing. Child Class The class that extends the features of another class is known as child class, sub class or derived class. Parent Class The class whose properties and functionalities are used(inherited) by another class is known as parent class, super class or Base class. A real life example of inheritance can between Vehicle and Car class where each car inherits the properties and functionalities of a vehicle. Hence, Car acts as a subclass of Vehicle. Similarly Truck and Bus are also subclasses of super class Vehicle. image ( https://ibb.co/2P7RM8f ) Now, lets look at the code given below: class X { constructor(a, b) { this.a = a; this.b = b; } printHi() { console.log("Hi"); } } class Y extends X { //Y is a subclass of X constructor(a, b, c) { super(a, b); //refers to the constructor of parent class X this.c = c; //c is exclusive to Class Y only. } printHello() { //printHello is exclusive to class Y only. console.log("Hello"); } } const x1 = new X(1, 2); //x1 contains properties: a, b, printHi console.log(x1.a); console.log(x1.b); console.log(x1.printHi()); const y1 = new Y("a", "b", "c"); //y1 contains properties: a, b, printHi, c, printHello console.log(y1.a); console.log(y1.b); console.log(y1.c); console.log(y1.printHi()); console.log(y1.printHello()); In the above code, class Y “extends” class X, which means class Y is a subclass of superclass X. All the properties of X (a, b and printHi) also exist in class Y. Also, class Y contains some extra properties that are specific to it only (c and printHello). super is a special keyword which refers to the constructor function of the parent class. Try the following example in the editor below. Given a class A having properties x and y. Declare a class B which inherits class A and has properties z and printIB (prints “IB”(without quotes) to the console when called). Also, the constructor of class B should set the values of x, y and z to the values provided in the user input. Sample If input: 1 2 3 is provided in the console then values of properties x, y and z properties should be set to 1, 2 and 3 respectively.... View All View All No More Events to show! View All View...to show! View All View All No More Events to show! View All View...

    www.interviewbit.com/problems/class-inheritance/
  10. 300+ Must Do Coding Questions from Interviews |...

    Ace your next coding interView by practicing our hand-picked coding interView questions. Conquer the fear of coding interView and land your dream job!... View All View All No More Events to show! View All View...to show! View All View All No More Events to show! View All View...

    www.interviewbit.com/coding-interview-questions/