Arbeiten mit der GridJs Hervorhebungs Funktion

Arbeiten mit der GridJs-Hervorhebungs-Funktion

Wir unterstützen die folgenden JS-APIs für die Hervorhebungs-Funktion

  • Hervorhebung aktivieren und Hervorhebungsstil festlegen, alle Hervorhebungs-APIs werden erst wirksam, nachdem der Hervorhebungsstil im aktiven Arbeitsblatt festgelegt wurde
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)'}
  • Aktualisieren Sie den Hervorhebungsstil im aktiven Arbeitsblatt
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)'}
  • Deaktivieren Sie die Hervorhebung im aktiven Arbeitsblatt
xs.sheet.hideHighlights()
  • Zelltext zur Hervorhebung im aktiven Arbeitsblatt hinzufügen
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
  • Hervorhebung für Zelltext in Array im aktiven Arbeitsblatt entfernen
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 
  • Array für Hervorhebung von Zelltext im aktiven Arbeitsblatt abrufen
xs.sheet.getHighlightTexts()
  • Zellbereich zur Hervorhebung im aktiven Arbeitsblatt hinzufügen
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
  • Hervorhebung für Zellbereich in Array im aktiven Arbeitsblatt entfernen
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
  • Array für Hervorhebung von Zellbereichen im aktiven Arbeitsblatt abrufen
xs.sheet.getHighlightRanges()
  • Zellbereich für inverses Hervorheben im aktiven Arbeitsblatt festlegen
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
  • Hervorhebung für inverses Hervorheben im aktiven Arbeitsblatt entfernen
xs.sheet.removeHighlightInverseRange()

  • Inverse Hervorhebung für Zellbereich im aktiven Arbeitsblatt abrufen
xs.sheet.getHighlightInverseRange()
  • Form zur Hervorhebung im Array im aktiven Arbeitsblatt hinzufügen
xs.sheet.addHighlightShape(shapeid)
    // the parameters are:
    shapeid: the id of shape, can be find in xs.sheet.data.shapes
  • Hervorhebungsform im Array im aktiven Arbeitsblatt entfernen
xs.sheet.removeHighlightShape(shapeid)
     // the parameters are:
    shapeid: the id of shape, can be find in xs.sheet.data.shapes
  • Array für Hervorhebungsform im aktiven Arbeitsblatt abrufen
xs.sheet.getHighlightShaps()
  • Textfeld zur Hervorhebung im Textfeld hinzufügen, das ein spezieller Typ Formular ist und dessen Typ-Eigenschaft: “TextBox”, im aktiven Arbeitsblatt
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
  • Hervorhebungsbereich im Textfeld entfernen, das ein spezieller Typ Formular ist und dessen Typ-Eigenschaft: “TextBox”, im aktiven Arbeitsblatt
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
  • Bild zum Hervorhebungsarray im aktiven Arbeitsblatt hinzufügen
xs.sheet.addHighlightImage(imageid)
    // the parameters are:
    imageid: the id of image, can be find in xs.sheet.data.images
  • Hervorhebungsbild im Array im aktiven Arbeitsblatt entfernen
xs.sheet.removeHighlightImage(imageid)
     // the parameters are:
    imageid: the id of image, can be find in xs.sheet.data.images
  • Array für Hervorhebungsbild im aktiven Arbeitsblatt abrufen
xs.sheet.getHighlightImages()
  • Festlegen, ob alle Objekte im aktiven Arbeitsblatt hervorgehoben werden sollen, einschließlich aller Formen und Bilder sowie des gesamten Arbeitsblattbereichs
xs.sheet.setHighlightAll(ishighlightall,isrerender=true)
   // the parameters are:
   ishighlightall: true or false,whether to highlight all
   isrerender: true or false,whether to reRender
  • Funktion zum Festlegen eines benutzerdefinierten Bild-Highlights
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();
        }

  • Lösch-Highlight-Einstellung für das aktive Arbeitsblatt
xs.sheet.clearHighlights()

Highlight für Textfeldobjekt

Textfeld ist eine spezielle Art von Form, dessen Typ-Eigenschaft ist: “TextBox” zum Beispiel: Der nachstehende Code zeigt, welche Form ein Textfeld ist

for (let shape of xs.sheet.data.shapes) {
    if (shape.type === 'TextBox') {
        console.log(shape.id + ' is a textbox');
    }
}
  • Highlight für Textfeldobjekt hinzufügen
    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);
  • Highlight für Textfeldobjekt entfernen
    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);
  • Highlight für Textfeldobjekt abrufen
    getHighlight()
    //for example,we assume shape 0 is a textbox object
     const textbox=xs.sheet.data.shapes[0];
     textbox.getHighlight();
  • Hintergrundfarbe für Textfeldobjekt ändern
    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');
  • Automatische Änderung der Hintergrundfarbe und Textfarbe für einen visuellen aktiven Effekt
    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
  • Textinhalt im Textfeldobjekt einblenden/ausblenden
    hideText(boolvalue)
    // the parameters are:
        boolvalue: if true,will not display the text in the textbox object;if false,restore to original appearence

Weitere Informationen finden Sie auf unserer Github-Demo-Seite https://github.com/aspose-cells/Aspose.Cells-for-.NET/blob/master/Examples_GridJs/wwwroot/xspread/index.html