[1106:7] extends: A
Bootstrap page link. The anchor element inside a BsPageItem. Extends A.
BsPageLink (string Text, string Href = "#")
Creates a Bootstrap page link.
Text is a string with the link label.Href is an optional string with the page URL. Defaults to '#'.This object.[501:7] extends: Nav
Bootstrap breadcrumb navigation container. Extends Nav.
BsBreadcrumb ()
Creates a Bootstrap breadcrumb nav.
This object.addItem (object Item)
Adds a breadcrumb item to the nav.
Item is a BsBreadcrumbItem to add.This object.[1141:7] extends: Div
Bootstrap progress bar fill. Must be placed inside a BsProgress. Extends Div.
BsProgressBar (int Value = 0, int Min = 0, int Max = 100, string Label = null, string Variant = null, bool Striped = false, bool Animated = false)
Creates a Bootstrap progress bar fill.
Value is an int with the current progress value.Min is an optional int with the minimum value. Defaults to 0.Max is an optional int with the maximum value. Defaults to 100.Label is an optional string with an accessible or visible label.Variant is an optional bsVariant enum for the bar color. (primary, secondary, success, danger, warning, info, light, dark)Striped is an optional bool; true adds a striped pattern.Animated is an optional bool; true animates the stripes.This object.[2034:7] extends: Range
Bootstrap range slider input. Extends Range.
BsRange (string Id, Min = 0, Max = 100, Step = null, string Value = null)
Creates a Bootstrap range slider.
Id is a string with the input name and element ID.Min is an optional number for the minimum value. Defaults to 0.Max is an optional number for the maximum value. Defaults to 100.Step is an optional number for the increment step.Value is an optional string with the initial value.This object.[428:7] extends: Th
Bootstrap table header cell. Extends Th.
BsTableHeadCell (string Text = null)
Creates a Bootstrap table header cell.
Text is an optional string with the header cell content.This object.[410:7] extends: Td
Bootstrap table data cell. Extends Td.
BsTableCell (string Text = null, string Variant = null)
Creates a Bootstrap table data cell.
Text is an optional string with the cell content.Variant is an optional bsVariant enum for the cell color. (primary, secondary, success, danger, warning, info, light, dark)This object.[1736:7] extends: Div
Bootstrap form help text. Displays a hint below a form field. Extends Div.
BsFormHelp (string Id, string TextData)
Creates Bootstrap form help text.
Id is a string with the element ID.TextData is a string with the help text.This object.[802:7] extends: Ul
Bootstrap list group. A series of styled list items. Extends Ul.
BsListGroup (bool Flush = false, bool Horizontal = false)
Creates a Bootstrap list group.
Flush is an optional bool; true removes the border and rounded corners for a flush appearance inside another element.Horizontal is an optional bool; true lays items side by side.This object.[1877:7] extends: Select
Bootstrap select dropdown. A styled HTML select element. Extends Select.
BsSelect (string Id, string Size = null, bool Multiple = false)
Creates a Bootstrap select dropdown.
Id is a string with the select name and element ID.Size is an optional bsSize enum for the select height. (sm, lg)Multiple is an optional bool; true allows multiple selections.This object.[890:7] extends: A
Bootstrap nav link. The clickable anchor element inside a BsNavItem. Extends A.
BsNavLink (string Text, string Href = "#", bool Active = false, bool Disabled = false)
Creates a Bootstrap nav link.
Text is a string with the link label.Href is an optional string with the link URL.Active is an optional bool; true marks the link as the current page.Disabled is an optional bool; true grays out the link.This object.[532:7] extends: Span
Bootstrap breadcrumb item. Represents a single step in the breadcrumb trail. Extends Span.
BsBreadcrumbItem (string Text, string Href = null, bool Active = false)
Creates a Bootstrap breadcrumb item.
Text is the string label for this breadcrumb step.Href is an optional string URL. Omit for the active item.Active is an optional bool; true marks this as the current page.This object.[1628:7] extends: Div
Bootstrap toast header. Contains the title and optional dismiss button for a BsToast. Extends Div.
BsToastHeader (string Title = null, string Subtitle = null, bool Dismissible = true)
Creates a Bootstrap toast header.
Title is an optional string with the toast title.Subtitle is an optional string with secondary text (e.g., a timestamp).Dismissible is an optional bool; true adds a close button. Defaults to true.This object.[851:7] extends: Ul
Bootstrap nav list. Base navigation component supporting tabs and pills styles. Extends Ul.
BsNav (string Style = null, bool Fill = false, bool Justified = false)
Creates a Bootstrap nav.
Style is an optional bsNavStyle enum. (tabs, pills) Omit for a basic nav.Fill is an optional bool; true expands items to fill all available width.Justified is an optional bool; true makes all items equal width.This object.[51:6] static extends: object
Bootstrap spinner types. (border, grow)
[69:6] static extends: object
Bootstrap card image positions. (top, bottom, overlay)
[23:6] static extends: object
Bootstrap container size breakpoints including fluid. (sm, md, lg, xl, xxl, fluid)
[1718:7] extends: Label
Bootstrap form label. Associates visible text with a form input control. Extends Label.
BsFormLabel (string Id, string TextData)
Creates a Bootstrap form label.
Id is a string with the ID of the associated input element.TextData is a string with the label text.This object.[1364:7] extends: Span
Bootstrap dropdown item. A single option inside a BsDropdownMenu. Extends Span.
BsDropdownItem (string Text, string Href = "#", bool Active = false, bool Disabled = false)
Creates a Bootstrap dropdown item.
Text is a string with the item label.Href is an optional string URL. Defaults to '#'.Active is an optional bool; true highlights this item.Disabled is an optional bool; true disables the item.This object.[1485:7] extends: Div
Bootstrap modal content wrapper. Contains the header, body, and footer sections. Extends Div.
BsModalContent ()
Creates a Bootstrap modal content div.
This object.[447:7] extends: Div
Bootstrap alert message box. Supports all color variants and an optional dismiss button. Extends Div.
BsAlert (string Variant = "primary", string Message = null, bool Dismissible = false)
Creates a Bootstrap alert.
Variant is a bsVariant enum for the alert color. (primary, secondary, success, danger, warning, info, light, dark)Message is an optional string with the alert message.Dismissible is an optional bool; true adds a close button.This object.[656:7] extends: Div
Bootstrap card. A flexible content container with optional header, body, footer, and image sections. Extends Div.
BsCard ()
Creates a Bootstrap card.
This object.[2101:7] extends: Span
Bootstrap input group text addon. A styled text label attached to an input inside a BsInputGroup. Extends Span.
BsInputGroupText (string Text)
Creates a Bootstrap input group text addon.
Text is a string with the addon label.This object.[875:7] extends: Span
Bootstrap nav item. A list item wrapper inside a BsNav. Extends Span.
BsNavItem ()
Creates a Bootstrap nav item.
This object.[637:7] extends: Div
Bootstrap button toolbar. Groups multiple button groups together. Extends Div.
BsButtonToolbar ()
Creates a Bootstrap button toolbar.
This object.[1462:7] extends: Div
Bootstrap modal dialog container. The inner sizing wrapper for a BsModal. Extends Div.
BsModalDialog (bool Scrollable = false, bool Centered = false, string Size = null)
Creates a Bootstrap modal dialog container.
Scrollable is an optional bool; true allows scrolling the modal body independently.Centered is an optional bool; true vertically centers the modal.Size is an optional bsSize enum for the modal size. (sm, lg, xl)This object.[562:7] extends: Button
Bootstrap close button. A styled X button used to dismiss components such as alerts and modals. Extends Button.
BsCloseButton (string AriaLabel = "Close")
Creates a Bootstrap close button.
AriaLabel is an optional accessible label string. Defaults to 'Close'.This object.[823:7] extends: Span
Bootstrap list group item. A single item within a BsListGroup. Extends Span.
BsListGroupItem (string Text = null, string Variant = null, bool Active = false, bool Disabled = false)
Creates a Bootstrap list group item.
Text is an optional string with the item text.Variant is an optional bsVariant enum for the item color. (primary, secondary, success, danger, warning, info, light, dark)Active is an optional bool; true highlights this item as selected.Disabled is an optional bool; true grays out the item.This object.[90:6] static extends: object
Bootstrap navbar color scheme themes. (light, dark)
[1948:7] extends: Div
Bootstrap radio button. A self-contained form-check component with a labeled radio input. Extends Div.
BsRadio (string Id, string Name, string LabelText, bool Checked = false, bool Disabled = false)
Creates a Bootstrap radio button with a wrapper div and label.
Id is a string with the input element ID.Name is a string with the radio group name.LabelText is a string with the radio button label.Checked is an optional bool; true selects this option by default.Disabled is an optional bool; true disables the radio button.This object.getChecked ()
Gets the checked state of the radio button.
A bool with true if checked, false otherwise.[11:6] static extends: object
Bootstrap responsive size breakpoints. (sm, md, lg, xl, xxl)
[99:6] static extends: object
Bootstrap navbar expand breakpoints. (sm, md, lg, xl, xxl)
[310:7] extends: Div
Bootstrap figure. Groups an image with a caption. Extends Div.
BsFigure (string Src, string Alt = null, string Caption = null)
Creates a Bootstrap figure with image and optional caption.
Src is a string with the image source URL.Alt is an optional string with the alternative text.Caption is an optional string with the caption text.This object.[128:6] static extends: object
Bootstrap button type attribute values. (button, submit, reset)
[975:7] extends: A
Bootstrap navbar brand. The logo or site name link. Extends A.
BsNavbarBrand (string Text, string Href = "#")
Creates a Bootstrap navbar brand link.
Text is a string with the brand label.Href is an optional string with the brand URL. Defaults to '#'.This object.[1599:7] extends: Div
Bootstrap toast notification. A lightweight, auto-dismissing alert. Extends Div.
BsToast (string Id, bool AutoHide = true, int Delay = 5000)
Creates a Bootstrap toast.
Id is a string with the toast element ID.AutoHide is an optional bool; false keeps the toast visible until dismissed. Defaults to true.Delay is an optional int with the auto-hide delay in milliseconds. Defaults to 5000.This object.[36:6] static extends: object
Bootstrap color variant names. (primary, secondary, success, danger, warning, info, light, dark)
[1052:7] extends: Nav
Bootstrap pagination nav. Wraps a list of page link items. Extends Nav.
BsPagination (string Size = null)
Creates a Bootstrap pagination nav.
Size is an optional bsSize enum for the pagination size. (sm, lg)This object.addItem (object Item)
Adds a BsPageItem to the pagination list.
Item is a BsPageItem to add.This object.[1543:7] extends: Div
Bootstrap modal footer. The action button area at the bottom of a modal. Extends Div.
BsModalFooter ()
Creates a Bootstrap modal footer.
This object.[1248:7] extends: Div
Bootstrap accordion item. A single collapsible section inside a BsAccordion. Extends Div.
BsAccordionItem (string ParentId, string ItemId, string Title, string Body, bool Open = false)
Creates a Bootstrap accordion item.
ParentId is a string with the parent accordion ID, or null for always-open behavior.ItemId is a string with a unique ID for this item.Title is a string with the header button text.Body is a string with the collapsible body content.Open is an optional bool; true expands the item by default.This object.[686:7] extends: Div
Bootstrap card body section. Extends Div.
BsCardBody ()
Creates a Bootstrap card body.
This object.[1126:7] extends: Div
Bootstrap progress bar wrapper. Contains one or more BsProgressBar components. Extends Div.
BsProgress ()
Creates a Bootstrap progress bar wrapper.
This object.[1307:7] extends: Div
Bootstrap dropdown. A toggleable contextual overlay. Extends Div.
BsDropdown (string Direction = "dropdown")
Creates a Bootstrap dropdown container.
Direction is an optional bsDropDirection enum. (dropdown, dropup, dropend, dropstart) Defaults to dropdown.This object.[1755:7] extends: Div
Bootstrap form row helper. Wraps form elements with bottom margin spacing. Extends Div.
BsFormRow (Items = null)
Creates a Bootstrap form row.
Items is an optional object or list of objects to add.This object.[60:6] static extends: object
Bootstrap nav styles. (tabs, pills)
[247:7] extends: Div
Bootstrap blockquote. Displays quoted text with an optional footer attribution. Extends Div.
BsBlockquote (string Text, string Footer = null)
Creates a Bootstrap blockquote.
Text is the string with the quoted text.Footer is an optional string with the attribution text.This object.[1086:7] extends: Span
Bootstrap page item. A list item wrapping a BsPageLink. Extends Span.
BsPageItem (bool Active = false, bool Disabled = false)
Creates a Bootstrap page item.
Active is an optional bool; true highlights as the current page.Disabled is an optional bool; true disables the item.This object.[670:7] extends: Div
Bootstrap card header section. Extends Div.
BsCardHeader (string Text = null)
Creates a Bootstrap card header.
Text is an optional string with the header text.This object.[1858:7] extends: Textarea
Bootstrap textarea input. A multi-line text input. Extends Textarea.
BsTextarea (string Id, int Rows = 3, string Value = null)
Creates a Bootstrap textarea.
Id is a string with the textarea name and element ID.Rows is an optional int with the visible row count. Defaults to 3.Value is an optional string with the initial text content.This object.[1778:7] extends: Input
Bootstrap text field input. A single-line plain text input. Extends Input.
BsTextField (string Id, string Value = null, string Placeholder = null)
Creates a Bootstrap text input.
Id is a string with the input name and element ID.Value is an optional string with the initial value.Placeholder is an optional string shown when the field is empty.This object.[231:7] extends: P
Bootstrap lead paragraph. Renders text slightly larger and lighter than body copy. Extends P.
BsLead (string Text = null)
Creates a Bootstrap lead paragraph.
Text is an optional string with the paragraph text.This object.[273:7] extends: Span
Bootstrap muted text span. Renders text in a subdued gray color. Extends Span.
BsMuted (string Text = null)
Creates a Bootstrap muted text span.
Text is an optional string with the text content.This object.[1899:7] extends: Div
Bootstrap checkbox. A self-contained form-check component with a labeled checkbox input. Extends Div.
BsCheckbox (string Id, string LabelText, bool Checked = false, bool Disabled = false)
Creates a Bootstrap checkbox with a wrapper div and label.
Id is a string with the input element ID.LabelText is a string with the checkbox label.Checked is an optional bool; true checks the box by default.Disabled is an optional bool; true disables the checkbox.This object.getChecked ()
Gets the checked state of the checkbox.
A bool with true if checked, false otherwise.setChecked (bool Checked)
Sets the checked state of the checkbox.
Checked is a bool with true to check, false to uncheck.This object.[162:7] extends: Div
Bootstrap grid row. Must contain BsCol children. Extends Div.
BsRow (list Children = null)
Creates a Bootstrap grid row.
Children is an optional list of child objects to add.This object.[1797:7] extends: Email
Bootstrap email input field. Extends Email.
BsEmailField (string Id, string Value = null, string Placeholder = null)
Creates a Bootstrap email input.
Id is a string with the input name and element ID.Value is an optional string with the initial value.Placeholder is an optional string shown when the field is empty.This object.[928:7] extends: Div
Bootstrap tab pane. A single panel shown when its matching nav tab is active. Extends Div.
BsTabPane (string Id, bool Active = false)
Creates a Bootstrap tab pane.
Id is a string with the pane element ID.Active is an optional bool; true shows this pane initially.This object.[365:7] extends: Thead
Bootstrap table header section. Extends Thead.
BsTableHead (string Variant = null)
Creates a Bootstrap table head.
Variant is an optional bsVariant enum for the header color. (primary, secondary, success, danger, warning, info, light, dark)This object.[2057:7] extends: FileInput
Bootstrap file input field. Extends FileInput.
BsFileInput (string Id, bool Multiple = false, list Accept = null)
Creates a Bootstrap file input.
Id is a string with the input name and element ID.Multiple is an optional bool; true allows selecting multiple files.Accept is an optional list of accepted MIME types or extensions.This object.[992:7] extends: Button
Bootstrap navbar toggler button. Reveals collapsed nav content on smaller screens. Extends Button.
BsNavbarToggler (string Target)
Creates a Bootstrap navbar toggler button.
Target is a string with the ID of the collapse target.This object.[1034:7] extends: Ul
Bootstrap navbar nav list. A Ul that holds nav items inside a navbar. Extends Ul.
BsNavbarNav ()
Creates a Bootstrap navbar nav list.
This object.[1209:7] extends: Div
Bootstrap accordion. A vertically collapsing list of items. Extends Div.
BsAccordion (string Id, bool AlwaysOpen = false)
Creates a Bootstrap accordion.
Id is a string with the accordion element ID.AlwaysOpen is an optional bool; true allows multiple items to stay open at the same time.This object.addItem (string Title, string Body, bool Open = false)
Adds a BsAccordionItem to this accordion.
Title is a string with the item header text.Body is a string with the item body text.Open is an optional bool; true expands this item initially.This object.[2082:7] extends: Div
Bootstrap input group. Attaches addons (text, buttons) to the sides of an input field. Extends Div.
BsInputGroup (string Size = null)
Creates a Bootstrap input group.
Size is an optional bsSize enum for the input group size. (sm, lg)This object.[1324:7] extends: Button
Bootstrap dropdown toggle button. Opens and closes the dropdown menu when clicked. Extends Button.
BsDropdownToggle (string Text, string Variant = "primary")
Creates a Bootstrap dropdown toggle button.
Text is a string with the button label.Variant is a bsVariant enum for the button color. (primary, secondary, success, danger, warning, info, light, dark) Defaults to primary.This object.[1835:7] extends: Number
Bootstrap number input field. Extends Number.
BsNumberField (string Id, string Value = null, Min = null, Max = null, Step = null)
Creates a Bootstrap number input.
Id is a string with the input name and element ID.Value is an optional string with the initial value.Min is an optional number for the minimum allowed value.Max is an optional number for the maximum allowed value.Step is an optional number for the increment step.This object.[394:7] extends: Tr
Bootstrap table row. Extends Tr.
BsTableRow (string Variant = null)
Creates a Bootstrap table row.
Variant is an optional bsVariant enum for the row color. (primary, secondary, success, danger, warning, info, light, dark)This object.[1500:7] extends: Div
Bootstrap modal header. Contains the modal title and optional close button. Extends Div.
BsModalHeader (string Title = null, bool Dismissible = true)
Creates a Bootstrap modal header.
Title is an optional string with the modal title text.Dismissible is an optional bool; true adds a close button. Defaults to true.This object.[182:7] extends: Div
Bootstrap grid column. Place inside a BsRow. Extends Div.
BsCol (string NumberOfCols = null, string Size = null)
Creates a Bootstrap grid column.
NumberOfCols is an optional string with the column span width (1-12). Omit for an auto-width column.Size is an optional bsSize enum breakpoint. (sm, md, lg, xl, xxl) Omit to apply at all sizes.This object.[79:6] static extends: object
Bootstrap dropdown direction variants. (dropdown, dropup, dropend, dropstart)
[716:7] extends: H5
Bootstrap card title heading. Extends H5.
BsCardTitle (string Text = null)
Creates a Bootstrap card title.
Text is an optional string with the title text.This object.[785:7] extends: Div
Bootstrap card group. Lays multiple cards side by side with equal width and height. Extends Div.
BsCardGroup ()
Creates a Bootstrap card group.
This object.[700:7] extends: Div
Bootstrap card footer section. Extends Div.
BsCardFooter (string Text = null)
Creates a Bootstrap card footer.
Text is an optional string with the footer text.This object.[1426:7] extends: Div
Bootstrap modal dialog. A layered dialog box displayed above the page content. Extends Div.
BsModal (string Id, bool Static = false, string Size = null)
Creates a Bootstrap modal.
Id is a string with the modal element ID.Static is an optional bool; true prevents closing the modal by clicking the backdrop.Size is an optional bsSize enum for the modal size. (sm, lg, xl)This object.getModalSize ()
Returns the size enum value stored for use by BsModalDialog.
The bsSize enum value or null.[211:7] extends: Div
Bootstrap display heading. Renders larger, decorative headings. Extends Div.
BsDisplay (string Level, string Text = null)
Creates a Bootstrap display heading.
Level is a string with the display level (1-6).Text is an optional string with the heading text.This object.[340:7] extends: Table
Bootstrap table. Applies Bootstrap table styles to a standard HTML table element. Extends Table.
BsTable (string Variant = null, bool Striped = false, bool Hover = false, bool Bordered = false, bool Small = false)
Creates a Bootstrap table.
Variant is an optional bsVariant enum for the table color. (primary, secondary, success, danger, warning, info, light, dark)Striped is an optional bool; true adds alternating row shading.Hover is an optional bool; true highlights rows on hover.Bordered is an optional bool; true adds borders to all cells.Small is an optional bool; true reduces cell padding.This object.[292:7] extends: Img
Bootstrap image. Supports responsive, thumbnail, and rounded styles. Extends Img.
BsImage (string Src, string Alt = null, string Style = "fluid")
Creates a Bootstrap image.
Src is a string with the image source URL.Alt is an optional string with the alternative text.Style is an optional string with the visual style. (fluid, thumbnail, rounded) Defaults to fluid.This object.[112:6] static extends: object
Bootstrap toast container position values. (topStart, topCenter, topEnd, middleStart, middleCenter, middleEnd, bottomStart, bottomCenter, bottomEnd)
[1389:7] extends: Span
Bootstrap dropdown divider. A horizontal rule separating groups of dropdown items. Extends Span.
BsDropdownDivider ()
Creates a Bootstrap dropdown divider.
This object.[1683:7] extends: Form
Bootstrap form wrapper. Manages form submission and field layout. Extends Form.
BsForm (string Action = null, string Method = "post")
Creates a Bootstrap form.
Action is an optional string with the form submission URL.Method is an optional string with the HTTP method. (get, post) Defaults to post.This object.addField (string DisplayName, object FormField, string HelpText = null)
Adds a labeled form field row to the form.
DisplayName is a string with the field label text.FormField is the input object to add.HelpText is an optional string with hint text shown below the field.This object.[581:7] extends: Button
Bootstrap button. Supports all color variants, outline style, sizes, and disabled state. Extends Button.
BsButton (string Variant = "primary", string Text = null, bool Outline = false, string Size = null, bool Disabled = false, string Type = "button")
Creates a Bootstrap button.
Variant is a bsVariant enum for the button color. (primary, secondary, success, danger, warning, info, light, dark)Text is an optional string with the button label.Outline is an optional bool; true renders an outline-style button.Size is an optional bsSize enum for the button size. (sm, lg)Disabled is an optional bool; true disables the button.Type is an optional bsButtonType enum for the button type attribute. (button, submit, reset) Defaults to button.This object.[950:7] extends: Nav
Bootstrap navbar. A responsive navigation header. Extends Nav.
BsNavbar (string Theme = "light", string BgVariant = "light", string Expand = "lg")
Creates a Bootstrap navbar.
Theme is an optional bsNavbarTheme enum. (light, dark) Defaults to light.BgVariant is an optional bsVariant enum for the background color. (primary, secondary, success, danger, warning, info, light, dark)Expand is an optional bsNavbarExpand enum for the breakpoint at which the navbar expands. (sm, md, lg, xl, xxl) Defaults to lg.This object.[913:7] extends: Div
Bootstrap tab content wrapper. Contains BsTabPane children. Extends Div.
BsTabContent ()
Creates a Bootstrap tab content wrapper.
This object.[1346:7] extends: Ul
Bootstrap dropdown menu. The list of items revealed on toggle. Extends Ul.
BsDropdownMenu (bool AlignEnd = false)
Creates a Bootstrap dropdown menu.
AlignEnd is an optional bool; true right-aligns the menu.This object.[381:7] extends: Tbody
Bootstrap table body section. Extends Tbody.
BsTableBody ()
Creates a Bootstrap table body.
This object.[1528:7] extends: Div
Bootstrap modal body. The main content area of a modal. Extends Div.
BsModalBody ()
Creates a Bootstrap modal body.
This object.[478:7] extends: Span
Bootstrap badge. A small label component for counts or status indicators. Extends Span.
BsBadge (string Variant = "primary", string Text = null, bool Pill = false)
Creates a Bootstrap badge.
Variant is a bsVariant enum for the badge background color. (primary, secondary, success, danger, warning, info, light, dark)Text is an optional string with the badge label.Pill is an optional bool; true renders a pill-shaped badge.This object.[1406:7] extends: Span
Bootstrap dropdown header. A non-interactive label for a group of dropdown items. Extends Span.
BsDropdownHeader (string Text)
Creates a Bootstrap dropdown header label.
Text is a string with the header text.This object.[1987:7] extends: Div
Bootstrap switch. A toggle switch styled as a form-check with the switch role. Extends Div.
BsSwitch (string Id, string LabelText, bool Checked = false)
Creates a Bootstrap switch toggle.
Id is a string with the input element ID.LabelText is a string with the switch label.Checked is an optional bool; true turns the switch on by default.This object.getChecked ()
Gets the checked state of the switch.
A bool with true if on, false if off.setChecked (bool Checked)
Sets the checked state of the switch.
Checked is a bool with true to turn on, false to turn off.This object.[1017:7] extends: Div
Bootstrap navbar collapse wrapper. Contains nav items that collapse on small screens. Extends Div.
BsNavbarCollapse (string Id)
Creates a Bootstrap navbar collapse div.
Id is a string with the element ID referenced by BsNavbarToggler.This object.[1177:7] extends: Div
Bootstrap loading spinner. Displays an animated indicator while content is loading. Extends Div.
BsSpinner (string Type = "border", string Variant = null, string Size = null, string Label = "Loading...")
Creates a Bootstrap spinner.
Type is an optional bsSpinnerType enum. (border, grow) Defaults to border.Variant is an optional bsVariant enum for the spinner color. (primary, secondary, success, danger, warning, info, light, dark)Size is an optional bsSize enum for a smaller spinner. (sm)Label is an optional string with the accessible label. Defaults to 'Loading...'.This object.[1561:7] extends: Div
Bootstrap toast container. Positions toast notifications on the screen. Extends Div.
BsToastContainer (string Position = "bottomEnd")
Creates a Bootstrap toast container.
Position is an optional bsToastPos enum for screen placement. (topStart, topCenter, topEnd, middleStart, middleCenter, middleEnd, bottomStart, bottomCenter, bottomEnd) Defaults to bottomEnd.This object.[746:7] extends: P
Bootstrap card text paragraph. Extends P.
BsCardText (string Text = null)
Creates a Bootstrap card text paragraph.
Text is an optional string with the paragraph text.This object.[762:7] extends: Img
Bootstrap card image. Positions an image at the top, bottom, or as an overlay inside a card. Extends Img.
BsCardImg (string Src, string Alt = null, string Position = "top")
Creates a Bootstrap card image.
Src is a string with the image source URL.Alt is an optional string with the alternative text.Position is an optional bsCardImgPos enum. (top, bottom, overlay) Defaults to top.This object.[731:7] extends: H6
Bootstrap card subtitle heading. Extends H6.
BsCardSubtitle (string Text = null)
Creates a Bootstrap card subtitle.
Text is an optional string with the subtitle text.This object.[613:7] extends: Div
Bootstrap button group. Groups multiple buttons on a single line. Extends Div.
BsButtonGroup (bool Vertical = false, string Size = null)
Creates a Bootstrap button group.
Vertical is an optional bool; true stacks buttons vertically.Size is an optional bsSize enum for the group size. (sm, lg)This object.[141:7] extends: Div
Bootstrap container div. Wraps page content with a centered, fixed-width (or fluid) layout. Extends Div.
BsContainer (string Size = null)
Creates a Bootstrap container.
Size is an optional bsContainerSize enum value for the container width. (sm, md, lg, xl, xxl, fluid) Omit for a default fixed-width container.This object.[1816:7] extends: Password
Bootstrap password input field. Extends Password.
BsPasswordField (string Id, string Value = null, string Placeholder = null)
Creates a Bootstrap password input.
Id is a string with the input name and element ID.Value is an optional string with the initial value.Placeholder is an optional string shown when the field is empty.This object.[2121:7] extends: Div
Bootstrap floating label wrapper. Wraps an input and its label so the label floats above the input when focused or filled. Extends Div.
BsFloatingLabel (string LabelText, object InputField)
Creates a Bootstrap floating label wrapper.
LabelText is a string with the floating label text.InputField is the input object to wrap. The input must have an element ID set and a placeholder attribute.This object.[1663:7] extends: Div
Bootstrap toast body. The main content area of a BsToast. Extends Div.
BsToastBody (string Text = null)
Creates a Bootstrap toast body.
Text is an optional string with the toast message.This object.