Interface: Createable
components.Createable
Whether this component supports create and destroy operations. This generally applies for components that work with instances, such as clipping planes or dimensions.
Implemented by
Properties
afterCreate
• afterCreate: Event
<any
>
Fired after successfully calling ()
Defined in
temp/components/base-types/base-types.ts:145
afterDelete
• afterDelete: Event
<any
>
Fired after successfully calling ()
Defined in
temp/components/base-types/base-types.ts:151
create
• create: (data
: any
) => void
Type declaration
▸ (data
): void
Creates a new instance of an element (e.g. a new Dimension).
Parameters
Name | Type |
---|---|
data | any |
Returns
void
Defined in
temp/components/base-types/base-types.ts:142
delete
• delete: (data
: any
) => void
Type declaration
▸ (data
): void
Deletes an existing instance of an element (e.g. a Dimension).
Parameters
Name | Type |
---|---|
data | any |
Returns
void
Defined in
temp/components/base-types/base-types.ts:148