IProgressDialogSetLine Method
Displays a message in the progress dialog.
Namespace: DevCase.Win32.InterfacesAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
void SetLine(
uint lineNum,
string text,
bool compactPath,
IntPtr reserved = default
)
Sub SetLine (
lineNum As UInteger,
text As String,
compactPath As Boolean,
Optional reserved As IntPtr = Nothing
)
Dim instance As IProgressDialog
Dim lineNum As UInteger
Dim text As String
Dim compactPath As Boolean
Dim reserved As IntPtr
instance.SetLine(lineNum, text, compactPath,
reserved)
void SetLine(
unsigned int lineNum,
String^ text,
bool compactPath,
IntPtr reserved = IntPtr()
)
abstract SetLine :
lineNum : uint32 *
text : string *
compactPath : bool *
?reserved : IntPtr
(* Defaults:
let _reserved = defaultArg reserved new IntPtr()
*)
-> unit
No code example is currently available or this language may not be supported.
Parameters
- lineNum UInt32
-
The line number on which the text is to be displayed. Currently there are three lines—1, 2, and 3.
If the AutoTime flag was included in the flags parameter when
StartProgressDialog(IntPtr, Object, ProgressDialogFlags, IntPtr) was called,
only lines 1 and 2 can be used.
The estimated time will be displayed on line 3.
- text String
-
A null-terminated Unicode string that contains the text.
- compactPath Boolean
- to have path strings compacted if they are too large to fit on a line.
The paths are compacted with PathCompactPath(IntPtr, StringBuilder, UInt32) function.
- reserved IntPtr (Optional)
-
Reserved. Set to Zero.