I would try doing a cfdump and see what that gets you

<cfdump var="#setting()#">

Next I would try to guess the order of the arguments if it does exist
or
You can write your own function for it using something like so and inject it
into your CFC or include it as a UDF. I would imagine that this would work.


<cffunction name="mysetting" output="false" returntype="void">

    <cfargument name="attributecollection" required="false>" type="struct"
default="#structnew()#" >
    <cfargument name="enablecfoutputonly" required="false" type="string"
default="false" >
    <cfargument name="requesttimeout" required="false" default="60">
    <cfargument name="showdebugoutput" required="false" default="false" >

 <cfsetting attributecollection="#arguments.attributecollection#"
             enablecfoutputonly="#arguments.enablecfoutputonly#" setting
            requesttimeout="#arguments.requesttimeout#"
            showdebugoutput="#arguments.showdebugoutput#">

</cffunction>

And call it like so
mysetting();


HTH

G!

On Tue, Jan 26, 2010 at 3:03 PM, Carol F <cfcn...@gmail.com> wrote:

>
> sorry, I saw that page before, but I could not find cfsetting, or is it
> somewhere buried there?
>
> On Tue, Jan 26, 2010 at 10:23 AM, Matt Quackenbush <quackfu...@gmail.com
> >wrote:
>
> >
> > The CF9 docs have had this ever since CF9 was released.
> >
> >
> >
> http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSe9cbe5cf462523a02805926a1237efcbfd5-7fff.html
> >
> >
> >
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330154
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to