|
|
|
SftDirectoryColumn.Contents Property |
Defines the contents for all cells in this column.
Syntax
VB.NET |
Type = object.Contents As SftDirectoryContentsConstants |
||
VB |
Type = object.Contents As SftDirectoryContentsConstants |
||
C#.NET |
SftDirectoryContentsConstants Type = object.Contents; |
||
VC++ |
enum SftDirectoryContentsConstants Type = object->Contents;
|
||
C |
HRESULT object->get_Contents(enum SftDirectoryContentsConstants* Type); |
||
Delphi |
Type := object.Contents : TOleEnum; |
||
VB.NET |
object.Contents = Type As SftDirectoryContentsConstants |
||
VB |
object.Contents = Type As SftDirectoryContentsConstants |
||
C#.NET |
SftDirectoryContentsConstants object.Contents = Type; |
||
VC++ |
enum SftDirectoryContentsConstants object->Contents = Type;
|
||
C |
HRESULT object->put_Contents(enum SftDirectoryContentsConstants Type); |
||
Delphi |
object.Contents := Type : TOleEnum; |
object
A SftDirectoryColumn object.
Type
Defines the contents for all cells in this column.
Type |
Value |
Description |
0 |
Name - The folder name. |
|
1 |
Size - The folder size, generally in KB (Kilo Bytes) or MB (Mega Bytes), if available. |
|
2 |
Type - The folder type. The type string is provided by the Windows Shell or Shell extensions, if available. |
|
3 |
Date Modified - The folder's last modification date, if available. |
|
4 |
Date Created - The folder's creation date, if available. |
|
5 |
Date Accessed - The folder's last access date, if available. |
|
6 |
Attributes - The folder's attributes, if available. A = ready to archive, H = hidden folder, C = compressed, E = encrypted. |
|
51 |
User defined 1 - 9. User-defined contents, which are added for each folder using the UserContents event. The UserContents event occurs every time a folder is added so application-specific contents can be added. |
|
52 |
User defined 2. |
|
53 |
User defined 3. |
|
54 |
User defined 4. |
|
55 |
User defined 5. |
|
56 |
User defined 6. |
|
57 |
User defined 7. |
|
58 |
User defined 8. |
|
59 |
User defined 9. |
Comments
The Contents property defines the contents for all cells in this column.
The Contents property determines the type of data displayed and loaded into the column. When using the Contents property at run-time, the contents must be refreshed using the Reload method (automatic at design-time only).