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:
21.0.0.15598
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
- Type: Bricscad.QuadQuadItemRegistry
Return Value
Type:
Boolean
See Also