ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Version: 2025

Category: OOP (Object Oriented Programming)
18 results
Access rights to a class property
A property is a code element that includes two processes...
Access rights to a class property: special cases
The retrieval and assignment processes can be public, private or protected. The access rights of the property correspond to the less restrictive rights of the two processes.
Advanced management of class instances
The advanced management of instances is used to choose the mode for taking reference. This choice has a direct impact on the release of class objects: depending on the reference selected, the "Destructor" will not be called at the same time..
Class inheritance
The hierarchical organization in class and sub-class has allowed to create the notion of inheritance...
"Is Class" operator
The "is <Class>" operator is used to find out whether the object used in an object of the class (or an object of one of its derived classes)
Classes, members, methods and properties
A class is made of...
Constructor and destructor
When creating a class in the code editor, the Constructor and Destructor methods are automatically created by default...
Copying and cloning
Variables are copied using the "=" operator...
Dynamic instantiation of a .NET object
A .NET object can be dynamically associated with a .NET class, in which case the object is dynamically instantiated.
Dynamic instantiation of object
An object can be dynamically associated with a class, we talk of dynamic instantiation of object...
Elements of a class: Enumerate and manipulate programmatically
Several types of WLanguage variables are used to enumerate and dynamically handle the elements of a class...
Error: Redefinition of syntax
The '<method>' methods of the '<derived class>' class and of the '<base class>' class do not have the same prototype...
Instantiating an object
To access a class, the object must be declared as being part of the class to handle, this is called object instantiation...
Interface
An interface is used to divide the uses of features common to several elements from their implementations, which simplifies their re-usability.
.NET object
To access a class...
OOP concepts
A class contains the description of a data structure (members) and the processes (methods) that handle this structure.
Overview of OOP (Object Oriented Programming)
The object-oriented programming (called "OOP") is a programming paradigm in which the programs are organized as sets of objects...
Using objects
To access a class, the object must be declared as being part of the class to handle, this is called object instantiation...