We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Format-Table
-Property
1 parent dc89ee3 commit 8bc670dCopy full SHA for 8bc670d
src/System.Management.Automation/FormatAndOutput/DefaultFormatters/PowerShellCore_format_ps1xml.cs
@@ -18,6 +18,19 @@ internal static IEnumerable<ExtendedTypeDefinition> GetFormatData()
18
.EndEntry()
19
.EndControl();
20
21
+ var ByteCollection_GroupHeader = CustomControl.Create()
22
+ .StartEntry()
23
+ .StartFrame()
24
+ .AddScriptBlockExpressionBinding(@"
25
+ $header = "" 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F""
26
+ if($_.Path) { $header = "" "" + [Microsoft.PowerShell.Commands.UtilityResources]::FormatHexPathPrefix + $_.Path + ""`r`n`r`n"" + $header }
27
+
28
+ $header
29
+ ")
30
+ .EndFrame()
31
+ .EndEntry()
32
+ .EndControl();
33
34
var sharedControls = new CustomControl[] {
35
AvailableModules_GroupingFormat
36
};
0 commit comments