GetStyle
GridCell.GetStyle method
Hücre stilini alır. Stili değiştirirken, stili hücreye ayarlamak için “SetStyle” yöntemini, çağırmalısınız.
public Style GetStyle()
Geri dönüş değeri
hücre stilinin kopyasını döndürür.
Örnekler
[C#]
Style style = sheet.GetCell(0, 0).GetStyle();
style.CellLocked = true;
style.VAlignment = VerticalAlignmentType.Top;
...
sheet.GetCell(0, 0).SetStyle(style);
[Visual Basic]
Dim style As Style = sheet.GetCell(0,0).GetStyle()
style.CellLocked = True
style.VAlignment = VerticalAlignmentType.Top
...
sheet.GetCell(0, 0).SetStyle(style)
Ayrıca bakınız
- class Style
- class GridCell
- ad alanı Aspose.Cells.GridDesktop.Data
- toplantı Aspose.Cells.GridDesktop