GridJs vurgu özelliği ile çalışmak
Contents
[
Hide
]
GridJs Vurgulama Özelliği İle Çalışma
Vurgulama özelliği için aşağıdaki JS API’lerini destekliyoruz
- Vurgulamayı etkinleştir ve vurgulama stili ayarla, tüm vurgulama API’leri yalnızca etkin elektronik tabloda vurgulama stili ayarlandıktan sonra geçerli olacaktır
xs.sheet.showHighlights(style)
// the parameter is:
style: the style for highlight ,currently only support color
for example: {'color':'rgba(85, 57, 47, 0.08)'}
- etkin elektronik tabloda ayarlanmış vurgulama stili güncelle
xs.sheet.updateHighlightStyle(style)
// the parameter is:
style: the style for highlight ,currently only support color
for example: {'color':'rgba(85, 57, 47, 0.08)'}
- etkin elektronik tabloda vurgulamayı devre dışı bırak
xs.sheet.hideHighlights()
- etkin elektronik tabloda hücre metnini vurgulamak için diziye hücre metni ekle
xs.sheet.addHighlightText(row,col,startpostion,endposition)
// the parameters are:
row:row index
col:column index
startpostion: highlight start postion in cell text
endpostion: highlight end postion in cell text
//it support multiple range postion inside one cell
- etkin elektronik tabloda hücre metni için vurgulamayı kaldır
xs.sheet.removeHighlightText(row,col,startpostion,endposition)
// the parameters are:
row:row index
col:column index
startpostion: highlight start postion in cell text
endpostion: highlight end postion in cell text
- etkin elektronik tabloda hücre metni için vurgulama dizisi al
xs.sheet.getHighlightTexts()
- Etkin çalışma sayfasına vurgulanacak hücre aralığını ekle
xs.sheet.addHighlightRange(sri,sci,eri,eci)
// the parameters are:
sri:start row index of cell range
sci:start column index of cell range
eri:end row index of cell range
eci:end column index of cell range
- Etkin çalışma sayfasında dizi içindeki hücre aralığı için vurguyu kaldır
xs.sheet.removeHighlightRange(sri,sci,eri,eci)
// the parameters are:
sri:start row index of cell range
sci:start column index of cell range
eri:end row index of cell range
eci:end column index of cell range
- Etkin çalışma sayfasında hücre aralığı için vurgu dizisini al
xs.sheet.getHighlightRanges()
- Etkin çalışma sayfasında ters vurgu için hücre aralığını ayarla
xs.sheet.setHighlightInverseRange(sri,sci,eri,eci)
// the parameters are:
sri:start row index of cell range
sci:start column index of cell range
eri:end row index of cell range
eci:end column index of cell range
- Etkin çalışma sayfasında ters vurgu için vurguyu kaldır
xs.sheet.removeHighlightInverseRange()
- Etkin çalışma sayfasında ters vurgu hücre aralığını al
xs.sheet.getHighlightInverseRange()
- Etkin çalışma sayfasında vurgu dizisine şekil ekle
xs.sheet.addHighlightShape(shapeid)
// the parameters are:
shapeid: the id of shape, can be find in xs.sheet.data.shapes
- Etkin çalışma sayfasında vurgu şeklini dizi içinden kaldır
xs.sheet.removeHighlightShape(shapeid)
// the parameters are:
shapeid: the id of shape, can be find in xs.sheet.data.shapes
- Etkin çalışma sayfasında vurgu şekli için dizi al
xs.sheet.getHighlightShaps()
- Etkin çalışma sayfasında metin kutusu ekle, metin kutusu, “TextBox” türü özelliği olan özel bir şekildir
xs.sheet.addHighlightTextBox(shapeid, startpostion, endposition)
// the parameters are:
shapeid: the id of shape, can be find in xs.sheet.data.shapes whose type is 'TextBox'
startpostion: highlight start postion in the text of textbox
endpostion: highlight end postion in the text of textbox
//it support multiple range postion inside one textbox
- Metin kutusunda vurgulu aralığı kaldır, metin kutusu, “TextBox” türü özelliği olan özel bir şekildir
xs.sheet.removeHighlightTextBox(shapeid, startpostion, endposition)
// the parameters are:
shapeid: the id of shape, can be find in xs.sheet.data.shapes whose type is 'TextBox'
startpostion: highlight start postion in the text of textbox
endpostion: highlight end postion in the text of textbox
//it support multiple range postion inside one textbox
- Etkin çalışma sayfasında resme vurgu dizisi ekle
xs.sheet.addHighlightImage(imageid)
// the parameters are:
imageid: the id of image, can be find in xs.sheet.data.images
- Etkin çalışma sayfasında dizi içindeki resmi vurguyu kaldır
xs.sheet.removeHighlightImage(imageid)
// the parameters are:
imageid: the id of image, can be find in xs.sheet.data.images
- Vurgulu resim dizisi al
xs.sheet.getHighlightImages()
- Etkin çalışma sayfasında tüm nesneleri vurgulayıp vurgulamamayı ayarla, tüm şekilleri, resimleri ve tüm çalışma sayfası alanını içerir
xs.sheet.setHighlightAll(ishighlightall,isrerender=true)
// the parameters are:
ishighlightall: true or false,whether to highlight all
isrerender: true or false,whether to reRender
- Özel resim vurgu işlevini ayarla
xs.sheet.setCustomHighlightImgFunc(func)
// the parameters are:
func: the custom highlight image function, it shall take two parameters ,first is ishighlight,the second one is the fabric image object
//we use fabric js to manage image object, please refer to http://fabricjs.com/image-filters to check more info
below is an example for the decleare function:
const customHighlightImage = (ishighlight, imgobj) => {
imgobj.filters[0] = ishighlight ? new fabric.Image.filters.Sepia() : false;
imgobj.applyFilters();
}
- Etkin çalışma sayfası için vurgu ayarlarını temizle
xs.sheet.clearHighlights()
Metin Kutusu Nesnesi için Vurgu
Metin kutusu, “TextBox” türü özelliği olan özel bir şekildir Örneğin: Aşağıdaki kod, hangi şeklin metin kutusu olduğunu gösterecektir
for (let shape of xs.sheet.data.shapes) {
if (shape.type === 'TextBox') {
console.log(shape.id + ' is a textbox');
}
}
- Metin kutusu nesnesi için vurgu ekle
addHighlight(startpostion,endposition)
// the parameters are:
startpostion: highlight start postion in textbox
endpostion: highlight end postion in textbox
//for example,we assume shape 0 is a textbox object
const textbox=xs.sheet.data.shapes[0];
//first we shall add to highlight shape to enable the highlight for the textbox shape object,it support multiple range postion
xs.sheet.addHighlightShape(textbox.id);
textbox.addHighlight(5,10);
textbox.addHighlight(18,28);
- Metin kutusu nesnesi için vurguyu kaldır
removeHighlight(startpostion,endposition)
// the parameters are:
startpostion: highlight start postion in textbox
endpostion: highlight end postion in textbox
//for example,we assume shape 0 is a textbox object
const textbox=xs.sheet.data.shapes[0];
textbox.removeHighlight(5,10);
- Metin kutusu nesnesi için vurguyu al
getHighlight()
//for example,we assume shape 0 is a textbox object
const textbox=xs.sheet.data.shapes[0];
textbox.getHighlight();
- Metin kutusu nesnesi için arka plan rengini değiştir
setBackgroundColor(color)
// the parameters are:
color: the html color value in hex string value
//for example,we assume shape 0 is a textbox object,this will set the background color to Yellow
const textbox=xs.sheet.data.shapes[0];
textbox.setBackgroundColor('#FFFF00');
- Görsel etki elde etmek için arka plan rengini ve metin rengini otomatik olarak değiştir
setActiveEffect(boolvalue)
// the parameters are:
boolvalue: if true,will change background color and the text color of the textbox object;if false,restore to original appearence
- Metin kutusu nesnesinde metin içeriğini gizle/göster
hideText(boolvalue)
// the parameters are:
boolvalue: if true,will not display the text in the textbox object;if false,restore to original appearence
Daha fazlasını github demo sayfamızda bulabilirsiniz https://github.com/aspose-cells/Aspose.Cells-for-.NET/blob/master/Examples_GridJs/wwwroot/xspread/index.html