Sets the properties of the ViewFont object for the specified View object.
#Include <OutlookEX_GUI.au3>
_OL_ViewFontSet($oObject, $iSize = Default, $bBold = Default, $iColor = Default, $iExtendedColor = Default, $bItalic = Default, $bStrikethrough = Default, $bUnderline = Default)
Parameters
$oObject | Object to set the font properties for. Depending on the view type this can be one of the following: BusinessCardView: The HeadingsFont property CalendarView: The DayWeekFont, DayWeekTimeFont or MonthFont property CardView: The BodyFont or HeadingsFont property TableView: The AutoPreviewFont, ColumnFont or RowFont property TimelineView: The ItemFont, LowerScaleFont or UpperScaleFont property |
$iSize | [optional] Size (in points) of the font |
$bBold | [optional] True if the font is bold |
$iColor | [optional] Color of the font. Can be any of the OlColor enumeration |
$iExtendedColor | [optional] Extended color of the font. Can be any of the OlCategoryColor enumeration |
$bItalic | [optional] If the font is italicized |
$bStrikethrough | [optional] If the font is struck through with a horizontal line |
$bUnderline | [optional] If the font is underlined |
Return Value
Success: 1
Remarks
The ViewFont object is used by the following objects to represent font formatting information applied to the text in various portions of a view:
Related