IPXV_Inst::Settings Property

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IPXV_Inst::Settings Property}}
 
{{#customTitle:IPXV_Inst::Settings Property}}
{{#parentPage:PXV:IPXV_Inst|property}}
+
{{#parentPage:PXV:IPXV_Inst#Properties|Settings|property}}
{{ToWrite}}
+
 
{{ToReview}}
 
{{ToReview}}
  
Property '''Settings''' of interface [[PXV:IPXV_Inst|IPXV_Inst]] returns  Pointer to [[PXV:ICabNode|ICabNode]] ...
+
Returns the [[PXV:ICabNode|ICabNode]] object that provides the access to the all Editor's settings. Please release it immediately after usage because all time that you holding this object - all other threads will wait for release of it when try to access to it. Using programming languages that have ''Garbage Collectors'' for releasing unused object - be sure that this object is released immediately by you, otherwise it may cause blocking the background threads for long time.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT get_Settings([out, retval] ICabNode** ppSettings);
+
<pre class="brush:cpp;gutter:false">HRESULT get_Settings([out, retval] ICabNode** pSettings);
 
</pre>
 
</pre>
  
 
== See Also ==
 
== See Also ==
See also [[PXV:IPXV_Inst|IPXV_Inst]].
+
[[PXV:IPXV_Inst|IPXV_Inst]]

Latest revision as of 03:59, 15 June 2015


Returns the ICabNode object that provides the access to the all Editor's settings. Please release it immediately after usage because all time that you holding this object - all other threads will wait for release of it when try to access to it. Using programming languages that have Garbage Collectors for releasing unused object - be sure that this object is released immediately by you, otherwise it may cause blocking the background threads for long time.

Syntax

HRESULT get_Settings([out, retval]  ICabNode**  pSettings);

See Also

IPXV_Inst