Description
Sets or returns aboolean
that represents if a character run has the the Outline effect, displaying the inner and outer borders of each character. (This effect is not available for all fonts.)
C#
public boolean Outlined{ get ; set ; } |
vb.net
Public Property Outlined() As Boolean |
Remarks
MS Word equivalent: Format menu > Font... > Font tab > Effects section > OutlineExamples
C#
//--- Return Outlined bool outlined = oFont.Outlined; //--- Set Outlined oFont.Outlined = true ; |
vb.net
'--- Return Outlined Dim outlined As Boolean = oFont.Outlined '--- Set Outlined oFont.Outlined = True |