ConsoleSupportLineFormat Method |
Namespace:
Arsenal.ImageMounter.IO
Assembly:
Arsenal.ImageMounter (in Arsenal.ImageMounter.dll) Version: 1.0.0.0 (3.4.140.0)
Syntax public static string LineFormat(
string message,
int IndentWidth = 0,
Nullable<int> LineWidth = null,
char WordDelimiter = '',
char FillChar = ''
)
Public Shared Function LineFormat (
message As String,
Optional IndentWidth As Integer = 0,
Optional LineWidth As Nullable(Of Integer) = Nothing,
Optional WordDelimiter As Char = ""C,
Optional FillChar As Char = ""C
) As String
public:
static String^ LineFormat(
String^ message,
int IndentWidth = 0,
Nullable<int> LineWidth = nullptr,
wchar_t WordDelimiter = L'',
wchar_t FillChar = L''
)
static member LineFormat :
message : string *
?IndentWidth : int *
?LineWidth : Nullable<int> *
?WordDelimiter : char *
?FillChar : char
(* Defaults:
let _IndentWidth = defaultArg IndentWidth 0
let _LineWidth = defaultArg LineWidth null
let _WordDelimiter = defaultArg WordDelimiter ''
let _FillChar = defaultArg FillChar ''
*)
-> string
Parameters
- message
- Type: SystemString
- IndentWidth (Optional)
- Type: SystemInt32
- LineWidth (Optional)
- Type: SystemNullableInt32
- WordDelimiter (Optional)
- Type: SystemChar
- FillChar (Optional)
- Type: SystemChar
Return Value
Type:
StringSee Also