PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → Problem with a property when importing .NET library
Problem with a property when importing .NET library
Débuté par Marc, 06 oct. 2021 11:30 - Aucune réponse
Posté le 06 octobre 2021 - 11:30
In order to carry out the project I am developing, I had to import a .NET library. The library works fine except when I try to define a property. I think the problem comes when in windev libraries there is already a property defined with this name (The property in question is called "Region") and when defining it, it uses the original one instead of the .NET one.
How can I disable the original property?

runtimeSettings is PublicRuntimeSettings <- clBarcodereader.GetRuntimeSettings ()

runtimeSettings.Région.RegionLeft = 65;
runtimeSettings.Région.RegionBottom = 60;
runtimeSettings.Région.RegionTop = 20;
runtimeSettings.Région.RegionRight = 80