What's new

API documentation questions / Status / errors?

RCH_Projects

Alibre Super User
I think I have the latest API help file - AlibreX (Module: AlibreX) Version: 1.0.0.0 (13.0.0.13059)

For future reference correction on;



It appears the "AD_" prefix should read "ADunits_".
 

Attachments

  • ADunits help.jpg
    ADunits help.jpg
    200.4 KB · Views: 142
  • ADunits VB.jpg
    ADunits VB.jpg
    93.3 KB · Views: 130

RCH_Projects

Alibre Super User
Re: API documentation update on ADunits

These just don't appear to be available.
 

Attachments

  • ADunits help unavailable.jpg
    ADunits help unavailable.jpg
    101.9 KB · Views: 122
  • ADunits help unavailable macro.jpg
    ADunits help unavailable macro.jpg
    59.4 KB · Views: 128

RCH_Projects

Alibre Super User
DesignSession Property

VB.Net sample code error.

"DesignSession" should read "objDesignSession" as set in preceding code.
 

Attachments

  • DesignSession.jpg
    DesignSession.jpg
    172.3 KB · Views: 142

RCH_Projects

Alibre Super User
(Above) the configuration setting and below some code example with a "Watch" (memory dump) on some of the constants and variables.



Evaluating the configuration locks are actually a "bit comparison".

I suggest the following code as a "functional" alternative example.

Code:
If False = (MYoAD_Configuration.Locks And ADConfigurationLockType_AD_LOCK_COLOR_PROPERTIES) _
                                Then
                                    MsgBox ("Configuration is not locked for Color Properties")
                                  Else
                                    MsgBox ("Configuration is locked for Color Properties")
                            End If
71
 

Attachments

  • Configuration API.jpg
    Configuration API.jpg
    225.2 KB · Views: 100
  • Configuration.jpg
    Configuration.jpg
    49.9 KB · Views: 90
  • Configuration VBA.jpg
    Configuration VBA.jpg
    331.6 KB · Views: 99
Top