[ TDx_DrawPalette ]
[ next: OnDestroy() ]
__published:
__property TDx_Event OnCreate = {read=FOnCreate, write=FOnCreate, nodefault};
If you would like to submit additions or improvements to this page, click: admin@bcb-tools.com.
DESCRIPTION
Top
See Also
The
OnCreate()
event
is
triggered
by
the
TDx_DrawPalette::Create()
method
after
it
has
successfully
created
the
internal
LPDIRECTDRAWPALETTE
used
within
the
TDx_DrawPalette
component.
Note
that
since
this
event
is
only
called
upon
successful
creation,
this
event
is
an
ideal
place
for
code
that
is
to
be
activated
only
once,
immediately
upon
the
successful
creation
of
the
LPDIRECTDRAWPALETTE
interface.
For
example,
you
could
retrieve
the
TDx_DrawPalette
component's
capabilities,
Create()
dependant
components,
allocate
memory,
etc.
When
used
in
conjunction
with
the
TDx_DrawPalette::OnDestroy()
event,
you
can
fully
automate
and
insulate
your
code
on
a
per-component
basis.
SEE ALSO
Top