Evotec

Project

PSWriteHTML

PSWriteHTML is an open-source PowerShell project with packages, release history, and working documentation.

Stars 995
Forks 114
Open issues 69
PowerShell Gallery downloads 7,436,513
Release v1.41.0
Language: PowerShell Updated: 2026-04-11

API Reference

Function

New-TableButtonSearchBuilder

Aliases: New-HTMLTableButtonSearchBuilder
Namespace PSWriteHTML
Aliases
New-HTMLTableButtonSearchBuilder

Creates a configuration object for a table button search builder.

Remarks

This function creates a configuration object for a table button search builder with customizable options.

Examples

Authored help example

EXAMPLE 1


New-TableButtonSearchBuilder -ButtonName "Search" -DepthLimit 3 -DefaultLogic "AND" -GreyScale
Creates a search builder button named "Search" with a depth limit of 3, default logic set to "AND", and displayed in greyscale.
        

EXAMPLE 2


New-TableButtonSearchBuilder -ButtonName "Filter" -DefaultLogic "OR"
Creates a search builder button named "Filter" with default logic set to "OR".
        

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

New-TableButtonSearchBuilder [-ButtonName <String>] [-DefaultLogic <String>] [-DepthLimit <Int32>] [-GreyScale] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

ButtonName String optionalposition: 0pipeline: False
The name of the button to be displayed.
DefaultLogic String optionalposition: 2pipeline: False
The default logic to be applied.
DepthLimit Int32 optionalposition: 1pipeline: False
The depth limit for the search builder.
GreyScale SwitchParameter optionalposition: namedpipeline: False
Indicates if the search builder should be displayed in greyscale.