API Reference
InlineText
Tiny fluent builder for inline rich text (colored runs, spaces, separators). Produces a single span container with nested span runs.
Inheritance
- Element
- InlineText
Constructors
public InlineText() #Methods
public InlineText Badge(String text, RGBColor background, TablerBadgeStyle style = Pill, Nullable<TablerColor> textColor = null) #InlineTextAdd a Tabler badge chip with custom RGB background.
Parameters
- text System.String
- background HtmlForgeX.RGBColor
- style HtmlForgeX.TablerBadgeStyle = Pill
- textColor System.Nullable{HtmlForgeX.TablerColor} = null
public InlineText Bold(String text, RGBColor color) #InlineTextAdds a bold text run.
Parameters
- text System.String
- color System.Nullable{HtmlForgeX.TablerColor} = null
Bold(System.String text, HtmlForgeX.RGBColor color) #Adds a bold text run with an RGB color.
Parameters
- text System.String
- color HtmlForgeX.RGBColor
public InlineText Bold(String text, FontWeight weight, RGBColor color) #InlineTextBold with configurable weight and color.
Parameters
- text System.String
- weight HtmlForgeX.FontWeight
- color System.Nullable{HtmlForgeX.TablerColor} = null
Bold(System.String text, HtmlForgeX.FontWeight weight, HtmlForgeX.RGBColor color) #Bold run with a specific weight and RGB color.
Parameters
- text System.String
- weight HtmlForgeX.FontWeight
- color HtmlForgeX.RGBColor
public InlineText Code(String text) #InlineTextAdd inline code (monospace) run.
Parameters
- text System.String
public InlineText Code(String text, CodeRunStyle style) #InlineTextCode or keyboard shortcut run; Keyboard uses <kbd>.
Parameters
- text System.String
- style HtmlForgeX.CodeRunStyle
public InlineText Em(String text, Nullable<TablerColor> color = null) #InlineTextAdds an emphasized (italic) run, optional Tabler color.
Parameters
- text System.String
- color System.Nullable{HtmlForgeX.TablerColor} = null
public InlineText Highlight(String text, RGBColor color) #InlineTextHighlight text using the <mark> element. Optional color sets the background.
Parameters
- text System.String
- color System.Nullable{HtmlForgeX.TablerColor} = null
Highlight(System.String text, HtmlForgeX.RGBColor color) #RGB overload of Highlight.
Parameters
- text System.String
- color HtmlForgeX.RGBColor
public InlineText Italic(String text, RGBColor color) #InlineTextAdds an italic text run.
Parameters
- text System.String
- color System.Nullable{HtmlForgeX.TablerColor} = null
Italic(System.String text, HtmlForgeX.RGBColor color) #Adds an italic text run with an RGB color.
Parameters
- text System.String
- color HtmlForgeX.RGBColor
public InlineText Link(String text, String href, RGBColor color, Boolean underline = true) #InlineTextAdds a link.
Parameters
- text System.String
- href System.String
- color System.Nullable{HtmlForgeX.TablerColor} = null
- underline System.Boolean = true
Link(System.String text, System.String href, HtmlForgeX.RGBColor color, System.Boolean underline) #Adds a link with RGB text color.
Parameters
- text System.String
- href System.String
- color HtmlForgeX.RGBColor
- underline System.Boolean
public InlineText Link(String text, String href, RGBColor textColor, RGBColor underlineColor, LineStyle style) #InlineTextLink with independent text and underline colors plus style.
Parameters
- text System.String
- href System.String
- textColor System.Nullable{HtmlForgeX.TablerColor}
- underlineColor System.Nullable{HtmlForgeX.TablerColor}
- style HtmlForgeX.LineStyle
Link(System.String text, System.String href, HtmlForgeX.RGBColor textColor, HtmlForgeX.RGBColor underlineColor, HtmlForgeX.LineStyle style) #RGBColor overload of Link with underline control.
Parameters
- text System.String
- href System.String
- textColor HtmlForgeX.RGBColor
- underlineColor HtmlForgeX.RGBColor
- style HtmlForgeX.LineStyle
public InlineText Muted(String text) #InlineTextAdds a muted text run.
Parameters
- text System.String
public InlineText Nbsp(Int32 count = 1) #InlineTextAdds one or more non‑breaking spaces.
Parameters
- count System.Int32 = 1
public InlineText Raw(String text) #InlineTextAdds raw text (no styling).
Parameters
- text System.String
public InlineText Run(String text, RGBColor color, Boolean underline = false, Boolean italic = false, Boolean bold = false) #InlineTextAdds a plain text run within a span, with optional text color and basic flags. Prefer using Boolean) for colored or dotted underlines, or CodeRunStyle>) when you want a single entry point.
Parameters
- text System.String
- color System.Nullable{HtmlForgeX.TablerColor} = null
- underline System.Boolean = false
- italic System.Boolean = false
- bold System.Boolean = false
Run(System.String text, HtmlForgeX.RGBColor color, System.Boolean underline, System.Boolean italic, System.Boolean bold) #Run overload using RGBColor.
Parameters
- text System.String
- color HtmlForgeX.RGBColor
- underline System.Boolean
- italic System.Boolean
- bold System.Boolean
public InlineText Sep(DataGridSeparatorStyle style = Middot, String gap = null) #InlineTextAdds a configurable separator with balanced spacing.
Parameters
- style HtmlForgeX.DataGridSeparatorStyle = Middot
- gap System.String = null
public InlineText Small(String text) #InlineTextSmall text run using <small>.
Parameters
- text System.String
public InlineText SoftBadge(String text, TablerColor color) #InlineTextConvenience for a soft (light) badge using TablerColor.
Parameters
- text System.String
- color HtmlForgeX.TablerColor
public InlineText SoftBadge(String text, RGBColor background, Nullable<TablerColor> textColor = null) #InlineTextConvenience for a soft (light) badge using RGBColor background.
Parameters
- text System.String
- background HtmlForgeX.RGBColor
- textColor System.Nullable{HtmlForgeX.TablerColor} = null
public InlineText SoftBadgeWithDot(String text, RGBColor dotColor, Nullable<TablerColor> badgeColor = null) #InlineTextEditorBrowsable(2) Obsolete("Use Badge(..., b => { b.Style = TablerBadgeStyle.Soft; b.WithDot(...); }) instead.", false)Soft badge with a small colored dot before the text (used for mentions or color swatches).
Parameters
- text System.String
- dotColor HtmlForgeX.TablerColor
- badgeColor System.Nullable{HtmlForgeX.TablerColor} = null
SoftBadgeWithDot(System.String text, HtmlForgeX.RGBColor dotColor, System.Nullable{HtmlForgeX.TablerColor} badgeColor) #Soft badge with a colored RGB dot before the text.
Parameters
- text System.String
- dotColor HtmlForgeX.RGBColor
- badgeColor System.Nullable{HtmlForgeX.TablerColor}
public InlineText Space(Int32 count = 1) #InlineTextAdds one or more spaces.
Parameters
- count System.Int32 = 1
public InlineText Strike(String text, RGBColor color) #InlineTextAdds a struck-through run, optional Tabler color.
Parameters
- text System.String
- color System.Nullable{HtmlForgeX.TablerColor} = null
Strike(System.String text, HtmlForgeX.RGBColor color) #Adds a struck-through run with an RGB color.
Parameters
- text System.String
- color HtmlForgeX.RGBColor
public InlineText Strong(String text, Nullable<TablerColor> color = null) #InlineTextAdds a strong (bold) run, optional Tabler color.
Parameters
- text System.String
- color System.Nullable{HtmlForgeX.TablerColor} = null
public InlineText Subscript(String text) #InlineTextSubscript run (<sub>).
Parameters
- text System.String
public InlineText Superscript(String text) #InlineTextSuperscript run (<sup>).
Parameters
- text System.String
Text(System.String text, HtmlForgeX.RGBColor color, HtmlForgeX.RGBColor underlineRgb, HtmlForgeX.LineStyle underlineStyle, HtmlForgeX.RGBColor backgroundRgb, System.Nullable{HtmlForgeX.FontWeight} weight, System.Boolean italic, System.Boolean strike, System.String href, System.Nullable{HtmlForgeX.CodeRunStyle} codeStyle) #RGBColor overload of the unified Text(...) entry point.
Parameters
- text System.String
- color HtmlForgeX.RGBColor
- underlineRgb HtmlForgeX.RGBColor
- underlineStyle HtmlForgeX.LineStyle
- backgroundRgb HtmlForgeX.RGBColor
- weight System.Nullable{HtmlForgeX.FontWeight}
- italic System.Boolean
- strike System.Boolean
- href System.String
- codeStyle System.Nullable{HtmlForgeX.CodeRunStyle}
public override String ToString() #StringReturns the rendered HTML for the composed inline text runs.
public InlineText Underline(String text, RGBColor color) #InlineTextAdds an underlined text run (simple shorthand).
Parameters
- text System.String
- color System.Nullable{HtmlForgeX.TablerColor} = null
Underline(System.String text, HtmlForgeX.RGBColor color) #RGBColor overload of Boolean).
Parameters
- text System.String
- color HtmlForgeX.RGBColor
public InlineText Underline(String text, RGBColor underlineColor, LineStyle style = Solid, RGBColor textRgbColor = null, RGBColor softBackgroundRgb = null, Boolean bold = false) #InlineTextUnderline with full control. Emits a span, applies text-decoration, and optional soft background tint.
Parameters
- text System.String
- underlineColor System.Nullable{HtmlForgeX.TablerColor}
- style HtmlForgeX.LineStyle = Solid
- textColor System.Nullable{HtmlForgeX.TablerColor} = null
- softBackground System.Nullable{HtmlForgeX.TablerColor} = null
- bold System.Boolean = false
Underline(System.String text, HtmlForgeX.RGBColor underlineColor, HtmlForgeX.LineStyle style, HtmlForgeX.RGBColor textRgbColor, HtmlForgeX.RGBColor softBackgroundRgb, System.Boolean bold) #RGBColor overload of Boolean).
Parameters
- text System.String
- underlineColor HtmlForgeX.RGBColor
- style HtmlForgeX.LineStyle
- textRgbColor HtmlForgeX.RGBColor
- softBackgroundRgb HtmlForgeX.RGBColor
- bold System.Boolean
public InlineText UnderlineColored(String text, RGBColor underlineColor, Nullable<TablerColor> textColor = null, RGBColor textRgbColor = null) #InlineTextEditorBrowsable(2) Obsolete("Use Underline(...) instead.", false)Back-compat alias for underlined text using an RGB underline color. Prefer Boolean).
Parameters
- text System.String
- underlineColor HtmlForgeX.RGBColor
- textColor System.Nullable{HtmlForgeX.TablerColor} = null
- textRgbColor HtmlForgeX.RGBColor = null
public InlineText UnderlineOnSoft(String text, RGBColor underlineColor, RGBColor background = null, Boolean bold = false) #InlineTextUnderlined text with a soft tinted background (similar to Tabler's -lt tokens).
Parameters
- text System.String
- color HtmlForgeX.TablerColor
- textColor System.Nullable{HtmlForgeX.TablerColor} = null
- bold System.Boolean = false
UnderlineOnSoft(System.String text, HtmlForgeX.RGBColor underlineColor, HtmlForgeX.RGBColor background, System.Boolean bold) #Underlined text with custom RGB background (semi-transparent) to mimic soft tint.
Parameters
- text System.String
- underlineColor HtmlForgeX.RGBColor
- background HtmlForgeX.RGBColor
- bold System.Boolean
Inherited Methods
public TablerAccordion Accordion(Action<TablerAccordion> config) #TablerAccordionParameters
- config Action<TablerAccordion>
public TablerActionsAndNotesCard ActionsAndNotesCard(Action<TablerActionsAndNotesCard> config) #TablerActionsAndNotesCardParameters
- config Action<TablerActionsAndNotesCard>
public TablerActionSummaryCard ActionSummaryCard(Action<TablerActionSummaryCard> config) #TablerActionSummaryCardParameters
- config Action<TablerActionSummaryCard>
public TablerActivityFeedCard ActivityFeedCard(Action<TablerActivityFeedCard> config) #TablerActivityFeedCardParameters
- config Action<TablerActivityFeedCard>
public override Element Add(Element element) #ElementParameters
- element Element
public TablerAlert Alert(String title, String message, TablerColor alertColor = Default, TablerAlertType alertType = Regular) #TablerAlertParameters
- title String
- message String
- alertColor TablerColor = Default
- alertType TablerAlertType = Regular
public TablerAnalyticsSummaryCard AnalyticsSummaryCard(Action<TablerAnalyticsSummaryCard> config) #TablerAnalyticsSummaryCardParameters
- config Action<TablerAnalyticsSummaryCard>
public ApexCharts ApexChart(Action<ApexCharts> config) #ApexChartsParameters
- config Action<ApexCharts>
public TablerApexChartCard ApexChartCard(Action<TablerApexChartCard> config) #TablerApexChartCardParameters
- config Action<TablerApexChartCard>
public TablerAuditLogCard AuditLogCard(Action<TablerAuditLogCard> config) #TablerAuditLogCardParameters
- config Action<TablerAuditLogCard>
public TablerAvatar Avatar() #TablerAvatarParameters
- config Action<TablerAvatar>
public TablerAvatarGroup AvatarGroup(Action<TablerAvatarGroup> config) #TablerAvatarGroupParameters
- config Action<TablerAvatarGroup>
public TablerBadge Badge(String text, TablerBadgeColor color, TablerBadgeVisualStyle style, TablerBadgeSize size, Boolean pill = true, String href = null) #TablerBadgeAdd a Tabler badge chip as an inline token.
Parameters
- text System.String
- color HtmlForgeX.TablerColor
- style HtmlForgeX.TablerBadgeStyle = Pill
public TablerBadgeSpan BadgeSpan(String text, TablerColor color = Blue) #TablerBadgeSpanParameters
- text String
- color TablerColor = Blue
public TablerBadgeStatus BadgeStatus(String text, TablerColor color) #TablerBadgeStatusParameters
- text String
- color TablerColor
public TablerBreakdownCard BreakdownCard(Action<TablerBreakdownCard> config) #TablerBreakdownCardParameters
- config Action<TablerBreakdownCard>
public TablerButton Button(String text, TablerButtonVariant variant = Primary) #TablerButtonParameters
- text String
- config Action<TablerButton> = Primary
public TablerCalendarWorkspaceCard CalendarWorkspaceCard(Action<TablerCalendarWorkspaceCard> config) #TablerCalendarWorkspaceCardParameters
- config Action<TablerCalendarWorkspaceCard>
public TablerCard Card(Int32 count, Action<TablerCard> config) #TablerCardParameters
- config Action<TablerCard>
public TablerCardBasic CardBasic(String title, String text) #TablerCardBasicParameters
- title String
- text String
public TablerCarousel Carousel(Action<TablerCarousel> config) #TablerCarouselParameters
- config Action<TablerCarousel>
public TablerCategoryBarChartCard CategoryBarChartCard(Action<TablerCategoryBarChartCard> config) #TablerCategoryBarChartCardParameters
- config Action<TablerCategoryBarChartCard>
public ChartJs ChartJs(Action<ChartJs> config) #ChartJsParameters
- config Action<ChartJs>
public TablerColumn Column(TablerColumnNumber number, Action<TablerColumn> config) #TablerColumnParameters
- config Action<TablerColumn>
public TablerControlBar ControlBar(Action<TablerControlBar> config) #TablerControlBarParameters
- config Action<TablerControlBar>
public TablerCookieBanner CookieBanner(Action<TablerCookieBanner> config) #TablerCookieBannerParameters
- config Action<TablerCookieBanner>
public TablerCountdown Countdown(Action<TablerCountdown> config = null) #TablerCountdownParameters
- config Action<TablerCountdown> = null
public TablerCountUp CountUp(Action<TablerCountUp> config) #TablerCountUpParameters
- config Action<TablerCountUp>
public TablerDataGrid DataGrid(Action<TablerDataGrid> config) #TablerDataGridParameters
- config Action<TablerDataGrid>
public TablerDataGridCard DataGridCard(Action<TablerDataGridCard> config) #TablerDataGridCardParameters
- config Action<TablerDataGridCard>
public TablerDataTableCard DataTableCard(Action<TablerDataTableCard> config) #TablerDataTableCardParameters
- config Action<TablerDataTableCard>
public VisNetwork DiagramNetwork(Action<VisNetwork> config) #VisNetworkParameters
- config Action<VisNetwork>
public TablerDistributionCard DistributionCard(Action<TablerDistributionCard> config) #TablerDistributionCardParameters
- config Action<TablerDistributionCard>
public HtmlTag Div(Action<HtmlTag> config) #HtmlTagParameters
- config Action<HtmlTag>
public TablerEmptyState EmptyState(Action<TablerEmptyState> config) #TablerEmptyStateParameters
- config Action<TablerEmptyState>
public TablerEmptyStateCard EmptyStateCard(Action<TablerEmptyStateCard> config) #TablerEmptyStateCardParameters
- config Action<TablerEmptyStateCard>
public override Boolean Equals(Object obj) #BooleanParameters
- obj Object
public FancyTree FancyTree(Action<FancyTree> config) #FancyTreeParameters
- config Action<FancyTree>
public TablerFlagIcon Flag(Country country) #TablerFlagIconParameters
- iso2 String
public TablerFlagList Flags(Action<TablerFlagList> config) #TablerFlagListParameters
- config Action<TablerFlagList>
public TablerForm Form(Action<TablerForm> config) #TablerFormParameters
- config Action<TablerForm>
public FullCalendar FullCalendar(Action<FullCalendar> config) #FullCalendarParameters
- config Action<FullCalendar>
public TablerGaugeCard GaugeCard(Action<TablerGaugeCard> config) #TablerGaugeCardParameters
- config Action<TablerGaugeCard>
public TablerGeoSummaryCard GeoSummaryCard(Action<TablerGeoSummaryCard> config) #TablerGeoSummaryCardParameters
- config Action<TablerGeoSummaryCard>
public HeaderLevel HeaderLevel(HeaderLevelTag level, String text) #HeaderLevelParameters
- level HeaderLevelTag
- text String
public TablerHeroCard HeroCard(Action<TablerHeroCard> config) #TablerHeroCardParameters
- config Action<TablerHeroCard>
public TablerHighlightCard HighlightCard(Action<TablerHighlightCard> config) #TablerHighlightCardParameters
- config Action<TablerHighlightCard>
public TablerIconElement Icon(TablerIconType icon, Action<TablerIconElement> config) #TablerIconElementParameters
- icon FontAwesomeSolid
- config Action<FontAwesomeIcon> = null
public TablerIconFont IconFont(TablerIconType icon) #TablerIconFontParameters
- icon String
public TablerIncidentTimelineCard IncidentTimelineCard(Action<TablerIncidentTimelineCard> config) #TablerIncidentTimelineCardParameters
- config Action<TablerIncidentTimelineCard>
public TablerInsightSummaryCard InsightSummaryCard(Action<TablerInsightSummaryCard> config) #TablerInsightSummaryCardParameters
- config Action<TablerInsightSummaryCard>
public TablerLightboxGallery LightboxGallery(Action<TablerLightboxGallery> config) #TablerLightboxGalleryParameters
- config Action<TablerLightboxGallery>
public TablerLineComparisonCard LineComparisonCard(Action<TablerLineComparisonCard> config) #TablerLineComparisonCardParameters
- config Action<TablerLineComparisonCard>
public TablerButton LinkButton(String text, String href, TablerButtonVariant variant = Primary) #TablerButtonParameters
- text String
- href String
- variant TablerButtonVariant = Primary
public TablerListCard ListCard(Action<TablerListCard> config) #TablerListCardParameters
- config Action<TablerListCard>
public TablerListGroup ListGroup(Action<TablerListGroup> config) #TablerListGroupParameters
- config Action<TablerListGroup>
public TablerLogs Logs(List<String> code, RGBColor backgroundColor, RGBColor textColor) #TablerLogsParameters
- code String
- theme TablerLogsTheme = Dark
- backgroundClass String = null
- textClass String = null
public TablerMapSummaryCard MapSummaryCard(Action<TablerMapSummaryCard> config) #TablerMapSummaryCardParameters
- config Action<TablerMapSummaryCard>
public TablerMetricCard MetricCard(Action<TablerMetricCard> config) #TablerMetricCardParameters
- config Action<TablerMetricCard>
public TablerModal Modal(Action<TablerModal> config) #TablerModalParameters
- config Action<TablerModal>
public TablerNarrativeCard NarrativeCard(Action<TablerNarrativeCard> config) #TablerNarrativeCardParameters
- config Action<TablerNarrativeCard>
public TablerNarrativeSummaryCard NarrativeSummaryCard(Action<TablerNarrativeSummaryCard> config) #TablerNarrativeSummaryCardParameters
- config Action<TablerNarrativeSummaryCard>
public TablerPageHeader PageHeader(Action<TablerPageHeader> config) #TablerPageHeaderParameters
- config Action<TablerPageHeader>
public TablerPeopleReviewCard PeopleReviewCard(Action<TablerPeopleReviewCard> config) #TablerPeopleReviewCardParameters
- config Action<TablerPeopleReviewCard>
public TablerPlaceholder Placeholder(Action<TablerPlaceholder> config) #TablerPlaceholderParameters
- config Action<TablerPlaceholder>
public TablerPlaceholderCard PlaceholderCard(Action<TablerPlaceholderCard> config) #TablerPlaceholderCardParameters
- config Action<TablerPlaceholderCard>
public TablerPlaceholderContainer Placeholders(Action<TablerPlaceholderContainer> config) #TablerPlaceholderContainerParameters
- config Action<TablerPlaceholderContainer>
public TablerPresenceListCard PresenceListCard(Action<TablerPresenceListCard> config) #TablerPresenceListCardParameters
- config Action<TablerPresenceListCard>
public TablerProgressBar ProgressBar(TablerProgressBarType type, Int32 percentage, Nullable<TablerColor> tablerBackground = null) #TablerProgressBarParameters
- config Action<TablerProgressBar>
public TablerProgressListCard ProgressListCard(Action<TablerProgressListCard> config) #TablerProgressListCardParameters
- config Action<TablerProgressListCard>
public EasyQRCodeElement QRCode(String text) #EasyQRCodeElementParameters
- text String
public QuillEditor QuillEditor(Action<QuillEditor> config = null) #QuillEditorParameters
- config Action<QuillEditor> = null
public TablerReviewListCard ReviewListCard(Action<TablerReviewListCard> config) #TablerReviewListCardParameters
- config Action<TablerReviewListCard>
public TablerRow Row(Action<TablerRow> config) #TablerRowParameters
- config Action<TablerRow>
public TablerScheduleSummaryCard ScheduleSummaryCard(Action<TablerScheduleSummaryCard> config) #TablerScheduleSummaryCardParameters
- config Action<TablerScheduleSummaryCard>
public ScrollingText ScrollingText(Action<ScrollingText> config) #ScrollingTextParameters
- config Action<ScrollingText>
public TablerScrollSpy ScrollSpy(Action<TablerScrollSpy> config) #TablerScrollSpyParameters
- config Action<TablerScrollSpy>
public SmartTab SmartTab(Action<SmartTab> config) #SmartTabParameters
- config Action<SmartTab>
public SmartWizard SmartWizard(Action<SmartWizard> config) #SmartWizardParameters
- config Action<SmartWizard>
public TablerSocialTileCard SocialTileCard(Action<TablerSocialTileCard> config) #TablerSocialTileCardParameters
- config Action<TablerSocialTileCard>
public Span Span(String content = "") #SpanParameters
- content String = ""
public TablerSparkline Sparkline(Action<TablerSparkline> config) #TablerSparklineParameters
- config Action<TablerSparkline>
public TablerSpinner Spinner(Action<TablerSpinner> config) #TablerSpinnerParameters
- config Action<TablerSpinner>
public TablerStatTileCard StatTileCard(Action<TablerStatTileCard> config) #TablerStatTileCardParameters
- config Action<TablerStatTileCard>
public TablerStatusIndicator StatusIndicator(Action<TablerStatusIndicator> config) #TablerStatusIndicatorParameters
- config Action<TablerStatusIndicator>
public TablerStatusStrip StatusStrip(Action<TablerStatusStrip> config) #TablerStatusStripParameters
- config Action<TablerStatusStrip>
public TablerSummaryStrip SummaryStrip(Action<TablerSummaryStrip> config) #TablerSummaryStripParameters
- config Action<TablerSummaryStrip>
public Table Table(Object objects, TableType tableType) #TableParameters
- objects IEnumerable<Object>
- tableType TableType
public TablerInput TablerInput(String name, Action<TablerInput> config = null) #TablerInputParameters
- name String
- config Action<TablerInput> = null
public TablerProgressBar TablerProgress(Action<TablerProgressBar> config) #TablerProgressBarParameters
- config Action<TablerProgressBar>
public TablerSelect TablerSelect(String name, Action<TablerSelect> config = null) #TablerSelectParameters
- name String
- config Action<TablerSelect> = null
public TablerSteps TablerSteps(Action<TablerSteps> config) #TablerStepsParameters
- config Action<TablerSteps>
public TablerTextarea TablerTextarea(String name, Action<TablerTextarea> config = null) #TablerTextareaParameters
- name String
- config Action<TablerTextarea> = null
public TablerTableSummaryCard TableSummaryCard(Action<TablerTableSummaryCard> config) #TablerTableSummaryCardParameters
- config Action<TablerTableSummaryCard>
public TablerTabs Tabs(Action<TablerTabs> config) #TablerTabsParameters
- config Action<TablerTabs>
public TablerTags Tags(Action<TablerTags> config) #TablerTagsParameters
- config Action<TablerTags>
public TablerTaskList Tasks(Action<TablerTaskList> config) #TablerTaskListParameters
- config Action<TablerTaskList>
public TablerText Text() #TablerTextUnified entry point that delegates to Run/Underline/Link/Code/Bold/Italic/Strike for a single-source-of-truth rendering. Use named arguments (e.g., underline:, background:, href:, codeStyle:) to keep call sites readable.
Parameters
- text System.String
- color System.Nullable{HtmlForgeX.TablerColor} = null
- underline System.Nullable{HtmlForgeX.TablerColor} = null
- underlineStyle HtmlForgeX.LineStyle = Solid
- background System.Nullable{HtmlForgeX.TablerColor} = null
- weight System.Nullable{HtmlForgeX.FontWeight} = null
- italic System.Boolean = false
- strike System.Boolean = false
- href System.String = null
- codeStyle System.Nullable{HtmlForgeX.CodeRunStyle} = null
public TablerTimeline Timeline(Action<TablerTimeline> config) #TablerTimelineParameters
- config Action<TablerTimeline>
public TablerTimelineSummaryCard TimelineSummaryCard(Action<TablerTimelineSummaryCard> config) #TablerTimelineSummaryCardParameters
- config Action<TablerTimelineSummaryCard>
public TablerToast Toast(Action<TablerToast> config) #TablerToastParameters
- title String
- message String
- type TablerToastType = Default
public TablerTrackingSummaryCard TrackingSummaryCard(Action<TablerTrackingSummaryCard> config) #TablerTrackingSummaryCardParameters
- config Action<TablerTrackingSummaryCard>
public TablerVectorMapCard VectorMapCard(Action<TablerVectorMapCard> config) #TablerVectorMapCardParameters
- config Action<TablerVectorMapCard>
public TablerWorkflowStepsCard WorkflowStepsCard(Action<TablerWorkflowStepsCard> config) #TablerWorkflowStepsCardParameters
- config Action<TablerWorkflowStepsCard>
public TablerWorkflowSummaryCard WorkflowSummaryCard(Action<TablerWorkflowSummaryCard> config) #TablerWorkflowSummaryCardParameters
- config Action<TablerWorkflowSummaryCard>