This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% Pacotes | |
\usepackage[table,xcdraw]{xcolor} | |
\usepackage{listings} | |
\usepackage{color} | |
\usepackage{graphicx} | |
% Quadro exemplo | |
\begin{quadro}[htb] | |
\Large | |
\centering |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' 1- on LibreOffice Calc, select a range of cells | |
' 2- run the macro below | |
Sub HighlightRangeMacro() | |
Dim nCol As Long 'Column index variable | |
Dim nRow As Long 'Row index variable | |
Dim oCols 'Columns in the selected range | |
Dim oRows 'Rows in the selected range | |
Dim oRange | |
Const nCellBackColor = 15132415 ' "Blue gray" | |
oRange = ThisComponent.getCurrentSelection() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- This code defines a Vue component that uses the v-calendar library to display a calendar with a custom "Prev" and "Next" button in the header --> | |
<script setup lang="ts"> | |
const handleClickPrev = (props: any) => { | |
console.log('[handleClickPrev props]', props); | |
} | |
const handleClickNext = (props: any) => { | |
console.log('[handleClickNext props]', props); | |
} |