Image displayed within the button
Member of Flat Button (PRIM_MD.FlatButton)
Data Type - String
Name of the Material Icon or Font Awesome icon to be shown on the control. The image displayed is foreground text rather than a background image. If both the Icon and IconImage properties are specified, the Icon will be shown.
This page shows two buttons with Check and Close icons.
Begin_Com Role(*EXTENDS #PRIM_WEB) Theme(#SYS_THEME) Define_Com Class(#PRIM_MD.FlatButton) Name(#Check) DisplayPosition(1) Left(64) Parent(#COM_OWNER) TabPosition(1) Top(56) ButtonDefault(True) Icon('check') Caption('OK') Define_Com Class(#PRIM_MD.FlatButton) Name(#Cross) DisplayPosition(2) Left(176) Parent(#COM_OWNER) TabPosition(2) Top(56) ButtonCancel(True) Icon('close') Caption('Cancel') End_Com
Febuary 18 V14SP2