Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns a boolean 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 > Outline

Examples

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
  • No labels