PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Problem with a property when importing .NET library
Problem with a property when importing .NET library
Iniciado por Marc, 06,oct. 2021 11:30 - No hay respuesta
Publicado el 06,octubre 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