> At 05:23 PM 7/10/2002 -0400, you wrote: > >You should look into CFC properties some - they are an interesting > >concept and add an extra layer of functionality to your CFCs. What's > >interesting is that you can have both 'private' and public > (This) data > >in your CFCs. > > via CFProperty?
No. To make a long topic kind of short.... Any variable set in the 'Variables' (unscoped) scope will be private. Any variable set in the This scope can be seen on the outside. If you create an instance of a CFC and do mycfc.foo = 1, foo is in the This scope automatically. ======================================================================= Raymond Camden, ColdFusion Jedi Master for Macromedia Email : [EMAIL PROTECTED] Yahoo IM : morpheus "My ally is the Force, and a powerful ally it is." - Yoda ______________________________________________________________________ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

