Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
FileFuncFlags (Enums)
.
Summary
C# Definition:
public enum FileFuncFlags : uint
{
FO_MOVE = 0x1,
FO_COPY = 0x2,
FO_DELETE = 0x3,
FO_RENAME = 0x4
}
VB Signature
Public Enum FileFuncFlags AS UInteger
FO_MOVE As Long = &H1
FO_COPY As Long = &H2
FO_DELETE As Long = &H3
FO_RENAME = &H4
End Enum
VB.net Signature
Public Enum FileFuncFlags As UInteger
FO_MOVE = &H1
FO_COPY = &H2
FO_DELETE = &H3
FO_RENAME = &H4
End Enum
End Enum
Notes:
Note, this does not implement [System.Flags] as the values collide, and only one value can be used at a time.
None.
User defined types:
SHFILEOPSTRUCT
Documentation
FileFuncFlags - Flags for wFunc member of [SHFILEOPSTRUCT]
2/6/2014 2:40:14 AM - -212.250.153.162
SHFILEOPSTRUCT - Structure for [SHFileOperation]
6/13/2021 1:46:39 PM - -79.206.148.209
SHFILEOPSTRUCT - Structure for [SHFileOperation]
6/13/2021 1:46:39 PM - -79.206.148.209
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!