Up: GEOS SDK TechDocs | Up | Prev: InkNoteGetCreationDate() ... | Next: isalnum() ...

InkNoteSetModificationDate()

void 	InkNoteSetModificationDate( 
        word		tdft1, 		/* First two words of */
        word		tdft2,		/*   TimerDateAndTime structure */
        dword 		note,		/* ID# of note */
        FileHandle		fh);		/* Handle of Ink DB file */

This routine sets a note's modification date.

Include: pen.goh

InkNoteSetNoteType()

void 	InkNoteSetNoteType( 
        dword 		tag,		/* ID# of note */
        VMFileHandle		fh,		/* Handle of Ink DB file */
        NoteType 		nt);		/* NT_INK or NT_TEXT */

This routine sets a note's type: text or ink.

Include: pen.goh

InkNoteSetTitle()

void 	InkNoteSetTitle(
        dword 		tag, 			/* ID# of note */
        VMFileHandle 		fh,			/* Handle of Ink DB file */
        const char *		name); 			/* Text object */);

This message renames an Ink Database note. The passed name should be null-terminated. The string may be up to INK_DB_MAX_NOTE_KEYWORDS_SIZE +1 in length.

Include: pen.goh

InkNoteSetTitleFromTextObject()

void 	InkNoteSetTitleFromTextObject(
        dword 		tag, 		/* ID# of note */
        FileHandle 		fh,		/* Handle of Ink DB file */
        optr		text); 		/* Text object */);

This message sets the name of the passed Ink Database note from the contents of the passed VisText object.

Include: pen.goh

InkSendTitleToTextObject()

void 	InkSendTitleToTextObject(
        dword 		tag, 		/* ID# of folder or note */
        VMFileHandle 		fh,		/* Handle of Ink DB file */
        optr		to); 		/* Text object to set */);

This message replaces the passed VisText object's text with the name from the passed folder or note of an Ink Database file.

Include: pen.goh

InkSetDocCustomGString()

void	InkSetDocCustomGString(
        VMFileHandle 		dbfh,
        Handle		gstring);

This routine sets the custom GString to use as a background for the passed Ink Database file. Note that this custom background will only be used if the document's basic InkBackgroundType is IBT_CUSTOM. (Set this using the InkSetDocGString() routine.)

Include: pen.goh

InkSetDocGString()

void	InkSetDocGString(
        VMFileHandle 		dbfh,
        InkBackgroundType		type);

This routine sets the standard GString to use as a background picture with the passed Ink Database file. If the passed background type is custom, be sure to also call InkSetDocCustomGString() .

Include: pen.goh

InkSetDocPageInfo()

void 	InkSetDocPageInfo(
        PageSizeReport *		psr,
        VMFileHandle 		fh);

Set the page information for an Ink Database file.

Include: pen.goh

IntegerOf()

word	IntegerOf(
        WWFixedAsDWord		wwf)

This macro returns the integral portion of a WWFixedAsDWord value.

Include: geos.h


Up: GEOS SDK TechDocs | Up | Prev: InkNoteGetCreationDate() ... | Next: isalnum() ...