IProgressDialogSetLine Method

Displays a message in the progress dialog.

Definition

Namespace: DevCase.Win32.Interfaces
Assembly: 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
)

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.

See Also