:: com :: sun :: star :: ucb ::

interface XSimpleFileAccess3
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XSimpleFileAccess
    |
    +-XSimpleFileAccess2
       |
       +-XSimpleFileAccess3
Description
This is an extension to the interface XSimpleFileAccess2 .
Since version
OpenOffice.org 1.1.5

Methods' Summary
isHidden Checks if a file is "hidden"
setHidden Sets the "hidden" of a file according to the boolean parameter, if the actual process has the right to do so and the used operation system supports this operation.
Methods' Details
isHidden
boolean
isHidden(
 
[in] string 

raises(

 
FileURL ) 
CommandAbortedException,
::com::sun::star::uno::Exception );

Description
Checks if a file is "hidden"
Parameter FileURL
URL to be checked
Returns
true, if the given File is "hidden", false otherwise
setHidden
void
setHidden(
 
[in] string
[in] boolean 

raises(

 
FileURL,
bHidden ) 
CommandAbortedException,
::com::sun::star::uno::Exception );

Description
Sets the "hidden" of a file according to the boolean parameter, if the actual process has the right to do so and the used operation system supports this operation.
Parameter bHidden
true; "hidden" flag will be set, false; "hidden" flag will be reset
Top of Page