Önceden ayarlanmış WordArt stilini şeklin metnine ayarlayın

Olası Kullanım Senaryoları

Aspose.Cells’i kullanarak önceden ayarlanmış WordArt stilini şeklin metnine ayarlayabilirsiniz.FontSetting.SetWordArtStyle() veya[FontSettingCollection.SetWordArtStyle()](https://reference.aspose.com/cells/java/com.aspose.cells/fontsettingcollection#setWordArtStyle(int)bu amaca yönelik yöntemler.

Önceden ayarlanmış WordArt stilini şeklin metnine ayarlayın

Aşağıdaki örnek kod, biraz metin içeren bir metin kutusu oluşturur ve ardından metninin önceden ayarlanmış WordArt stilini ayarlar.FontSetting.SetWordArtStyle() yöntem. bu nasılçıktı excel dosyasıMicrosoft Excel’de görünüyor.

yapılacaklar:resim_alternatif_metin

Basit kod

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getSharedDataDir(SetPresetWordArtStyle.class) + "articles/";
//Create workbook object
Workbook wb = new Workbook();
//Access first worksheet
Worksheet ws = wb.getWorksheets().get(0);
//Create a textbox with some text
int idx = ws.getTextBoxes().add(0, 0, 100, 700);
TextBox tb = ws.getTextBoxes().get(idx);
tb.setText("Aspose File Format APIs");
tb.getFont().setSize(44);
//Sets preset WordArt style to the text of the shape.
ArrayList<FontSetting> aList = tb.getCharacters();
FontSetting fntSetting = aList.get(0);
fntSetting.setWordArtStyle(PresetWordArtStyle.WORD_ART_STYLE_3);
//Save the workbook in xlsx format
wb.save(dataDir + "SetPresetWordArtStyle_out.xlsx");