'Declaration
Public Event AfterSubstitutedFont As EventHandler(Of AfterSubstitutedFontArgs)
public event EventHandler<AfterSubstitutedFontArgs> AfterSubstitutedFont
public event AfterSubstitutedFont: EventHandler;
In JScript, you can handle the events defined by another class, but you cannot define your own.
public: __event EventHandler<AfterSubstitutedFontArgs*>* AfterSubstitutedFont
public: event EventHandler<AfterSubstitutedFontArgs^>^ AfterSubstitutedFont
Event Data
The event handler receives an argument of type AfterSubstitutedFontArgs containing data related to this event. The following AfterSubstitutedFontArgs properties provide information specific to this event.
Property | Description |
---|---|
AlternativeFamilyName | Specifies the family name of font being used as replacement. |
FamilyName | Specifies the family name of the substituted font. |
See Also