عرض أو إخفاء شريطي التمرير في Aspose.Cells

توفر Aspose.Cells فئة Workbook التي تمثل ملف Excel. توفر فئة Workbook مجموعة واسعة من الخصائص والأساليب لإدارة ملف Excel. للتحكم في رؤية شريطي التمرير، استخدم خصائص فئة WorkbookSettings IsVScrollBarVisible و IsHScrollBarVisible. IsVScrollBarVisible و IsHScrollBarVisible هما خصائص بوليانية، مما يعني أنه يمكن لهذه الخصائص أن تخزن القيم صح أو خطأ فقط.

فيما يلي كود كامل يفتح ملف Excel، book1.xls، يخفي كلا شريطي التمرير ثم يحفظ الملف المعدل بصيغة output.xls.

يُظهر اللقطة الشاشية أدناه ملف Book1.xls الذي يحتوي على كلا شريطي التمرير. الملف المعدل يتم حفظه بصيغة output.xls كما هو موضح أدناه أيضًا.

Book1.xls: ملف Excel قبل أي تعديل

todo:image_alt_text

output.xls: ملف Excel بعد التعديل

todo:image_alt_text

C#

 //Creating a file stream containing the Excel file to be opened

FileStream fstream = new FileStream("book1.xls", FileMode.Open);

//Instantiating a Workbook object

//Opening the Excel file through the file stream

Workbook workbook = new Workbook(fstream);

//Hiding the vertical scroll bar of the Excel file

workbook.Settings.IsVScrollBarVisible = false;

//Hiding the horizontal scroll bar of the Excel file

workbook.Settings.IsHScrollBarVisible = false;

//Saving the modified Excel file

workbook.Save("output.xls");

//Closing the file stream to free all resources

fstream.Close();

تحميل رمز التشغيل

تحميل رمز عينة