Add
İçindekiler
[
Saklamak
]Add(int, int, int, int, string)
Belirtilen hücreye veya hücre aralığına bir köprü ekler.
public int Add(int firstRow, int firstColumn, int totalRows, int totalColumns, string address)
Parametre | Tip | Tanım |
---|---|---|
firstRow | Int32 | Köprü aralığının ilk satırı. |
firstColumn | Int32 | Köprü aralığının ilk sütunu. |
totalRows | Int32 | Bu köprü aralığındaki satır sayısı. |
totalColumns | Int32 | Bu köprü aralığının sütun sayısı. |
address | String | Köprünün adresi. |
Geri dönüş değeri
Hyperlink nesne indeksi.
Örnekler
[C#]
Worksheet worksheet = excel.Worksheets[0];
worksheet.Hyperlinks.Add("A4", 1, 1, "http://www.aspose.com");
worksheet.Hyperlinks.Add("A5", 1, 1, "c:\\book1.xls");
[Visual Basic]
Dim worksheet as Worksheet = excel.Worksheets(0)
worksheet.Hyperlinks.Add("A4", 1, 1, "http://www.aspose.com")
worksheet.Hyperlinks.Add("A5", 1, 1, "c:\\book1.xls")
Ayrıca bakınız
- class GridHyperlinkCollection
- ad alanı Aspose.Cells.GridDesktop.Data
- toplantı Aspose.Cells.GridDesktop
Add(string, int, int, string)
Belirtilen hücreye veya hücre aralığına bir köprü ekler.
public int Add(string cellName, int totalRows, int totalColumns, string address)
Parametre | Tip | Tanım |
---|---|---|
cellName | String | Hücre adı. |
totalRows | Int32 | Bu köprü aralığındaki satır sayısı. |
totalColumns | Int32 | Bu köprü aralığının sütun sayısı. |
address | String | Köprünün adresi. |
Geri dönüş değeri
Hyperlink nesne indeksi.
Ayrıca bakınız
- class GridHyperlinkCollection
- ad alanı Aspose.Cells.GridDesktop.Data
- toplantı Aspose.Cells.GridDesktop
Add(string, string)
Belirtilen hücreye bir köprü ekler .
public int Add(string cellName, string address)
Parametre | Tip | Tanım |
---|---|---|
cellName | String | Hücre adı. |
address | String | Köprünün adresi. |
Geri dönüş değeri
Hyperlink nesne indeksi.
Ayrıca bakınız
- class GridHyperlinkCollection
- ad alanı Aspose.Cells.GridDesktop.Data
- toplantı Aspose.Cells.GridDesktop
Add(string, string, string, string, string)
Belirtilen hücreye veya hücre aralığına bir köprü ekler.
public int Add(string startCellName, string endCellName, string address, string textToDisplay,
string screenTip)
Parametre | Tip | Tanım |
---|---|---|
startCellName | String | Aralığın sol üst hücresi. |
endCellName | String | Aralığın sağ alt hücresi. |
address | String | Köprünün adresi. |
textToDisplay | String | Belirtilen köprü için görüntülenecek metin. |
screenTip | String | Belirtilen köprü için ekran ipucu metni. |
Geri dönüş değeri
Hyperlink nesne indeksi.
Ayrıca bakınız
- class GridHyperlinkCollection
- ad alanı Aspose.Cells.GridDesktop.Data
- toplantı Aspose.Cells.GridDesktop
Add(int, int, string)
Satır sütun dizininde belirtilen bir hücreye bir köprü ekler.
public void Add(int row, int col, string url)
Parametre | Tip | Tanım |
---|---|---|
row | Int32 | Hücrenin satır dizini. |
col | Int32 | Hücrenin sütun dizini. |
url | String | Köprünün URL’si. |
Ayrıca bakınız
- class GridHyperlinkCollection
- ad alanı Aspose.Cells.GridDesktop.Data
- toplantı Aspose.Cells.GridDesktop