AecSpaceOffsetBaseRule Class Reference

The AecSpaceOffsetBaseRule public abstract base class is a member of the namespace Autodesk.Aec.SpaceOffsetRulesManager and the base class for all rule classes.

The only method the AecSpaceOffsetBaseRule base class implements is void RegisterType(System.Type type). This method defines functionality that is required for all specific rule types. This method is used to register object types for which a specific rule implementation needs to be called by AutoCAD Architecture 2024 toolset. The following sections contain some examples for the usage of this method. If a rule implementation needs to be called for all object types, you do not need to call the RegisterType method for all of them. Instead, you can make one call to RegisterType(Autodesk.Aec.SpaceOffsetRulesManager.kAllTypes).

namespace Autodesk.Aec.SpaceOffsetRulesManager
{
public abstract class AecSpaceOffsetBaseRule
{
protected AecSpaceOffsetBaseRule();
protected void RegisterType(Type type);
}
}