QuadReactorregisterQuadItems Method
|
This function is called whenever BricsCAD
needs to know ALL the commands supported by your reactor during,
but not limited to loading of your module, adding your reactor to
the AcEdQuadReactorManager, displaying the CUI dialog. Your
implementation of this interface is expected to call
AcEdQuadItemRegistry::append() for each QuadItem your reactor
supports / requires. If a QuadItem has not been registered,
AcEdQuadItems::append will not append that QuadItem to the Quad
when its shown.
Namespace: Bricscad.Quad
Assembly: BrxMgd (in BrxMgd.dll) Version:
24.0.1.0
Syntax
public abstract bool registerQuadItems(
QuadItemRegistry quadItemRegistry
)
Public MustOverride Function registerQuadItems (
quadItemRegistry As QuadItemRegistry
) As Boolean
public:
virtual bool registerQuadItems(
QuadItemRegistry^ quadItemRegistry
) abstract
abstract registerQuadItems :
quadItemRegistry : QuadItemRegistry -> bool
Parameters
- quadItemRegistry QuadItemRegistry
-
Return Value
Boolean
See Also