'''' This code is part of Document Solutions for Word demos.'' Copyright (c) MESCIUS inc. All rights reserved.''ImportsSystem.DrawingImportsGrapeCity.Documents.Word '' This example shows how to add a 3D effect to a text.PublicClassText3DEffectFunctionCreateDocx() AsGcWordDocumentDim doc = NewGcWordDocument() Dim paragraph AsParagraph = doc.Body.Paragraphs.Add()Dim run AsRun = paragraph.GetRange().Runs.Add("3D effects") Dim font AsGrapeCity.Documents.Word.Font = run.Font font.Size = 72F font.Bold = True font.Color.ThemeColor = ThemeColorId.Accent3 font.Line.Fill.Type = FillType.NoFill '' apply 3D effectDim threeD AsThreeDFormat = font.Effects.ThreeDFormat threeD.Material = MaterialType.Matte threeD.Depth.Width = 4.5F threeD.TopBevel.Type = BevelType.Angle threeD.TopBevel.Width = 5F threeD.TopBevel.Height = 1F '' Done:Return docEndFunctionEndClass