'''' This code is part of Document Solutions for Word demos.'' Copyright (c) MESCIUS inc. All rights reserved.''ImportsGrapeCity.Documents.Word '' This example shows how to add a preset 3D effect to a text.PublicClassText3DPresetEffectFunctionCreateDocx() AsGcWordDocumentDim doc = NewGcWordDocument() Dim paragraph AsParagraph = doc.Body.Paragraphs.Add()Dim run AsRun = paragraph.GetRange().Runs.Add("Text effects Preset 5") run.Font.Size = 72F '' apply preset text effects run.Font.ApplyEffectsPreset(FontEffectsPreset.Preset5) '' Done:Return docEndFunctionEndClass