إدارة سلاسل HTML للخلايا
Contents
[
Hide
]
سيناريوهات الاستخدام المحتملة
عندما تحتاج إلى تعيين بيانات مهيأة للخلية المحددة، يمكنك تعيين سلسلة HTML للخلية. بالطبع، يمكنك أيضًا الحصول على سلسلة HTML للخلية. تقدم Aspose.Cells هذه الميزة. توفر Aspose.Cells الخصائص والطرق التالية لمساعدتك في تحقيق أهدافك.
الحصول وتعيين سلسلة HTML باستخدام مكتبة Aspose.Cells for Python لإكسل
يوضح هذا المثال كيف:
- إنشاء دفتر عمل وإضافة بعض البيانات.
- الحصول على خلية محددة في الجدول الداخلي الأول.
- تعيين سلسلة HTML للخلية.
- الحصول على سلسلة HTML للخلية.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from aspose.cells import Workbook | |
# Instantiating an Workbook object | |
workbook = Workbook() | |
# Obtaining the reference of the newly added worksheet | |
ws = workbook.worksheets[0] | |
cells = ws.cells | |
# Setting the value to the cells | |
cell = cells.get("A1") | |
cell.put_value("Fruit") | |
cell = cells.get("B1") | |
cell.put_value("Count") | |
cell = cells.get("C1") | |
cell.put_value("Price") | |
cell = cells.get("A2") | |
cell.put_value("Apple") | |
cell = cells.get("A3") | |
cell.put_value("Mango") | |
cell = cells.get("A4") | |
cell.put_value("Blackberry") | |
cell = cells.get("A5") | |
cell.put_value("Cherry") | |
c3 = cells.get("C3") | |
# set html string for C3 cell. | |
c3.html_string = "<b>test bold</b>" | |
c4 = cells.get("C4") | |
# set html string for C4 cell. | |
c4.html_string = "<i>test italic</i>" | |
# get the html string of specific cell. | |
print(c3.html_string) | |
print(c4.html_string) |
الإخراج الذي تم توليده بواسطة رمز العينة
تُظهر اللقطة الشاشية التالية الإخراج الناتج من الكود المثالي السابق.