Description
Sets or returns aboolean
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 > EmbossedExamples
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 |