RowTextFont property (AlarmSummary object)
Sets or returns a Font object whose properties set the font of text in the event list. Read/write. Font.
Syntax
object
.RowTextFont
.PropertyName
where
object
—the name of an AlarmEventSummary object.PropertyName
—the name of a property belonging to the Font object.Remarks
The Font object returned by the Font property has the following properties:
- Bold (Boolean)
- Charset (Integer)
- Italic (Boolean)
- Name (String)
- Size (Currency)
- Strikethough (Boolean)
- Underline (Boolean)
- Weight (Integer)
Example
Dim oFont As StdFontSet oFont = New StdFontoFont.Bold = TrueoFont.Size = 10Set AlarmEventSummary1.RowTextFont = oFont
Provide Feedback