DetailsPaneFont property (AlarmSummary object)
Sets or returns a Font object whose properties set the font for text in the Details pane. Read/write. Font.
Syntax
object
.DetailsPaneFont
.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.DetailsPaneFont = oFont
Provide Feedback