VbaModuleCollection
İçindekiler
[
Saklamak
]VbaModuleCollection class
Şunların listesini temsil eder:VbaModule
public class VbaModuleCollection : CollectionBase<VbaModule>
Özellikleri
İsim | Tanım |
---|---|
Capacity { get; set; } | |
Count { get; } | |
Item { get; } | AlırVbaModule dizine göre listede. (2 indexers) |
Item { get; set; } |
yöntemler
İsim | Tanım |
---|---|
Add(Worksheet) | Bir çalışma sayfası için modül ekler. |
Add(VbaModuleType, string) | Modül ekler. |
AddDesignerStorage(string, byte[]) | |
BinarySearch(VbaModule) | |
BinarySearch(VbaModule, IComparer<VbaModule>) | |
BinarySearch(int, int, VbaModule, IComparer<VbaModule>) | |
Clear() | |
Contains(VbaModule) | |
CopyTo(VbaModule[]) | |
CopyTo(VbaModule[], int) | |
CopyTo(int, VbaModule[], int, int) | |
Exists(Predicate<VbaModule>) | |
Find(Predicate<VbaModule>) | |
FindAll(Predicate<VbaModule>) | |
FindIndex(Predicate<VbaModule>) | |
FindIndex(int, Predicate<VbaModule>) | |
FindIndex(int, int, Predicate<VbaModule>) | |
FindLast(Predicate<VbaModule>) | |
FindLastIndex(Predicate<VbaModule>) | |
FindLastIndex(int, Predicate<VbaModule>) | |
FindLastIndex(int, int, Predicate<VbaModule>) | |
GetDesignerStorage(string) | Tasarımcı verilerini temsil eder. |
GetEnumerator() | |
IndexOf(VbaModule) | |
IndexOf(VbaModule, int) | |
IndexOf(VbaModule, int, int) | |
LastIndexOf(VbaModule) | |
LastIndexOf(VbaModule, int) | |
LastIndexOf(VbaModule, int, int) | |
Remove(string) | Modülü adıyla kaldırın |
Remove(Worksheet) | Bir çalışma sayfası için modülü kaldırır. |
RemoveAt(int) |
Örnekler
[C#]
//Bir Çalışma Kitabı nesnesini başlatma
Workbook workbook = new Workbook();
// VBA projesini başlat.
VbaProject vbaProject = workbook.VbaProject;
// Yeni bir modül ekleyin.
vbaProject.Modules.Add(VbaModuleType.Class, "test");
//Excel dosyasını kaydetme
workbook.Save("book1.xlsm");
[Visual Basic]
'Bir Çalışma Kitabı nesnesini başlatma
Dim workbook As Workbook = New Workbook()
'VBA projesini başlatın.
Dim vbaProject as VbaProject = workbook.VbaProject
'Yeni bir modül ekleyin.
vbaProject.Modules.Add(VbaModuleType.Class, "test")
'Excel dosyasını kaydetme
workbook.Save("book1.xlsm")
Ayrıca bakınız
- class CollectionBase<T>
- class VbaModule
- ad alanı Aspose.Cells.Vba
- toplantı Aspose.Cells