What delphi function asserts that an object is not nil?
|
|
|
|
|
|
|
Like knight_killer pointed out above, you use the You can, of course, simply check against |
||
|
|
|
|
Not shure wat you mean but |
||
|
|
|
|
if Assigned(MyObject) then ... |
||
|
|
|
|
Assigned(AObject) will tell you if an object is nil or not. Perhaps worth mentioning is the fact that if you free an object using AObject.Free the Assigned will still return true. So make sure you free the object using FreeAndNil(AObject). |
||
|
|
