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 Emboss effect, displaying the text as if it is raised off the page in relief.
C#
public boolean Embossed{ get; set; }
vb.net
Public Property Embossed() As Boolean

Remarks

MS Word equivalent: Format menu > Font... > Font tab > Effects section > Embossed

Examples

C#
//--- Return Embossed
bool embossed = oFont.Embossed;
 
//--- Set Embossed
oFont.Embossed = true;
vb.net
'--- Return Embossed
Dim embossed As Boolean = oFont.Embossed
 
'--- Set Embossed
oFont.Embossed = True
  • No labels