8.2.3 ActiveNotePage

It is recommended that you switch to the originpro package. PyOrigin is primarily for users who need to work with Origin version prior to 2021.

Description

Get the active Notes in the project.

Syntax

ActiveNotePage()

Parameters

Return

The active Notes in project.

Examples

EX1

# Open a Notes in project
import PyOrigin
Notes=PyOrigin.ActiveNotePage()
Notes.SetText('This example shows how to set text for Notes by using PyOrigin')
NoteText=Notes.GetText()
print(NoteText)