Sort Score
Result 10 results
Languages All
Labels All
Results 1,751 - 1,760 of 4,444 for

translation

(0.08 sec)
  1. Aspose.Page for C++ - API Reference

    C++ Library to load, manipulate & convert XPS, PS & EPS files without needing to know the underlying structure of the mentioned file formats....TrueType ▼ N CodePorting ▼ N Translator N Cs2Cpp ▼ N System N BoxedValueDetail...

    reference.aspose.com/page/cpp
  2. Working مع Linear Extrusion|Documentation

    يقدم Aspose.3D for Python via .NET فئة LinearExtrusion ، والتي تأخذ شكل 2D كمدخل وتمتد الشكل في البعد الثالث.... twist_offset property translates offset while rotating the...

    docs.aspose.com/3d/ar/python-net/working-with-l...
  3. Converting a Presentation Slide to an SVG Image...

    hi when i translated slide to svg, i got this exception, "System.NullReferenceException: “Object reference not set to aninstance of an object” this is the code: slide.WriteAsSvg(ms, new Aspose.Slides.Export.SVGOptions…...2023, 10:47am #1 hi when i translated slide to svg, i got this...

    forum.aspose.com/t/converting-a-presentation-sl...
  4. Document.RenderToSize | Aspose.Words لمراجع .NE...

    Document طريقة. يعرض صفحة مستند إلى ملفGraphics كائن لحجم محدد .... Translate ( 0.5f , 0.5f ); // قم بتدوير...canvas . Scale ( 5 ); canvas . Translate ( 10 , 10 ); // قم بإنشاء...

    reference.aspose.com/words/ar/net/aspose.words/...
  5. Document.RenderToSize | Aspose.Words for .NET A...

    Document yöntem. Bir belge sayfasını birGraphics belirtilen bir boyuta nesne.... Translate ( 0.5f , 0.5f ); // Oluşturulan...canvas . Scale ( 5 ); canvas . Translate ( 10 , 10 ); // Başka bir...

    reference.aspose.com/words/tr/net/aspose.words/...
  6. Aspose::Words::Drawing::ShapeBase::LocalToParen...

    Aspose::Words::Drawing::ShapeBase::LocalToParent method. Converts a value from the local coordinate space into the coordinate space of the parent shape in C++....value ) Examples Shows how to translate the x and y coordinate location...document's coordinate plane will translate // to a movement of 2pts on...

    reference.aspose.com/words/cpp/aspose.words.dra...
  7. DocumentBase.ImportNode | Aspose.Words for .NET

    DocumentBase ImportNode method. Imports a node from another document to the current document in C#....references to styles and lists are translated from the original to the...references to styles and lists are translated from the original to the...

    reference.aspose.com/words/net/aspose.words/doc...
  8. package-frame - Aspose.CAD for Java - API Refer...

    Developer's manual to the Aspose.CAD for Java library. Know all classes, methods & interfaces for quick integration of the CAD library with your own apps....TechniquePhong TokenArray Torus Translate Triangles Trifans Tristrips... Torus The torus. Translate The translate. Triangles The triangles...

    reference.aspose.com/cad/java/com.aspose.cad.fi...
  9. package-summary - Aspose.CAD for Java - API Ref...

    Developer's manual to the Aspose.CAD for Java library. Know all classes, methods & interfaces for quick integration of the CAD library with your own apps....TechniquePhong TokenArray Torus Translate Triangles Trifans Tristrips... Torus The torus. Translate The translate. Triangles The triangles...

    reference.aspose.com/cad/java/com.aspose.cad.fi...
  10. SmartPtr | Aspose.Slides for C++ API Reference

    Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting Object. This pointer type follows intrusive pointer semantics. Reference counter is stored either in Object itself or in counter structure which is tied to Object instance tightly. In any case, all SmartPtr instances form single ownership group regardless how they were created which is unlike how std::shared_ptr class behaves. Converting raw pointer to SmartPtr is safe given there are other SmartPtr instances holding shared references to the same object. SmartPtr class instance can be in one of two states: shared pointer and weak pointer. To keep object alive, one should have count of shared references to it positive. Both weak and shared pointers can be used to access pointed object (to call methods, read or write fields, etc.), but weak pointers do not participate to shared pointer reference counting. Object is being deleted when the last 'shared' SmartPtr pointer to it is being destroyed. So, make sure that this doesn't happen when no other shared SmartPtr pointers to object exist, e. g. during object construction or destruction. Use System::Object::ThisProtector sentry objects (in C++ code) or CppCTORSelfReference or CppSelfReference attribute (in C# code being translated) to fix this issue. Similarily, make sure to break loop references by using System::WeakPtr pointer class or System::SmartPtrMode::Weak pointer mode (in C++ code) or CppWeakPtr attribute (in C# code being translated). If two or more objects reference each other using 'shared' pointers, they will never be deleted. If pointer type (weak or shared) should be switched in runtime, use System::SmartPtr::set_Mode() method or System::DynamicWeakPtr class. SmartPtr class doesn't contain any virtual methods. You should only inherit it if you're creating a memory management strategy of your own. This type is a pointer to manage other object's deletion. It should be allocated on stack and passed to functions either by value or by const reference....attribute (in C# code being translated) to fix this issue. Similarily...attribute (in C# code being translated). If two or more objects...

    reference.aspose.com/slides/cpp/system/smartptr/