- Start
- License
- Framework
- First steps
- Updates
- XA_Functions
- WApp
- WAutoComplete
- WBasic
- WBasicCheckbox
- WBasicContext
- WBasicDateTime
- WBasicEdit
- WBasicEmail
- WBasicNumber
- WBasicRadio
- WBasicSelect
- WBasicSelectItem
- WBasicStyle
- WBreadcrumb
- WButton
- WCard
- WCarousel
- WCarouselImage
- WCarouselPanel
- WCheckbox
- WChip
- WCmpButtonIcon
- WCmpButtonSpinner
- WCmpNumericKeypad
- WCollapsible
- WCollapsiblePanel
- WCollection
- WCollectionItem
- WColor
- WContainer
- WContext
- WContextHelper
- WControl
- WCookie
- WCss
- WDatePicker
- WDateTime
- WDiv
- WDoc
- WDocSection
- WDropDownItem
- WDropdown
- WDump
- WEdit
- WEmail
- WEngine
- WFetch
- WFieldset
- WFile
- WFlexRow
- WFloatActionButton
- WFloatActionButtonItem
- WFooter
- WForm
- WHeader
- WIconGoogle
- WImage
- WInput
- WInputImage
- WInputMask
- WInputText
- WLabel
- WLink
- WList
- WListItem
- WMain
- WMariaDbDatasource
- WMariaDbQuery
- WMaterialBox
- WMaterializeContext
- WMaterializeHelper
- WMeta
- WModal
- WModalMsgBtn
- WModalObject
- WNav
- WNavbar
- WNavbarItem
- WNavbarLogo
- WNumber
- WPackage
- WPagination
- WPaginationItem
- WParagraph
- WPdf
- WPdfAutoTable
- WPdfAutoTableStyle
- WPdfStyle
- WPhpRunner
- WPostFile
- WPreloader
- WRadio
- WRadioMenu
- WRange
- WRouter
- WScript
- WSelect
- WSelectItem
- WSession
- WSidenav
- WSidenavHeader
- WSidenavItem
- WSimpleContext
- WSlider
- WSliderItem
- WSpan
- WSqliteDatasource
- WSqliteQuery
- WStyle
- WSwitch
- WSyntaxHilite
- WTable
- WTableCell
- WTableColGroup
- WTableRow
- WTableTask
- WTableZone
- WTabs
- WTabsItem
- WTask
- WText
- WTextArea
- WTimePicker
- WTooltip
- WTranslator
- WWaterContext
- WXailerMariaDbDatasource
- WXailerSqliteDatasource
- WXailerWebDatasource
WMaterializeHelper
-
storage Datas
-
functions Methods
- Centered
- Circle
- Col
- Container
- FlowText
- Gap
- Hide
- HideOnLargeOnly
- HideOnMedAndDown
- HideOnMedAndUp
- HideOnMedOnly
- HideOnSmallOnly
- Highlight
- Hoverable
- Margin
- MarginBottom
- MarginLeft
- MarginRight
- MarginTop
- Offset
- Padding
- PaddingBottom
- PaddingLeft
- PaddingRight
- PaddingTop
- ResponsiveImage
- ResponsiveVideo
- ResposiveTable
- Row
- ScaleTransition
- ShowOnLarge
- ShowOnMedium
- ShowOnMediumAndDown
- ShowOnMediumAndUp
- ShowOnSmall
- Striped
- TextAlingCenter
- TextAlingleft
- TextAlingRight
- TextColor
- Truncate
- VerticalAlign
- VideoContainer
- WavesEffect
- ZDepth
-
event Events
-
Inherits from: WContextHelper
File: zMaterializeHelper.prg
Materialize programming help manager. Through the oContext property that all controls have, it is possible to access properties and methods offered by this class, which simplify programming by reducing the need to consult Materialize help to establish values to the 'class' attribute. It is especially useful if used with the Xailer IDE since its Intellisense manager is able to display all the members of the class.
Sample:
WITH OBJECT ::oSideList := WList():New( SO )
:cId := "sideList"
:oContext:HideOnSmallOnly()
...