typedef OPAQUE_64_BITS PDFolder;
ASBool PDFolderGetCreationDate(PDFolder folder, ASTimeRec *date);
folder | The folder.
|
date | A pointer to an
ASTimeRec that will be filled with the folder creation date. |
ASBool PDFolderGetDescription(PDFolder folder, ASText text);
folder | The folder.
|
text | A text object that will receive the folder description.
|
ASBool PDFolderGetDescriptionStyled(PDFolder folder, ASText text);
folder | The folder.
|
text | A text object that will receive the folder description.
|
ASBool PDFolderGetFieldDate(PDFolder folder, ASAtom fieldID, ASTimeRec *date);
folder | The folder.
|
fieldID | The field identifier.
|
date | The date that will receive the field value
|
ASBool PDFolderGetFieldNumber(PDFolder folder, ASAtom fieldID, float *number);
folder | The folder.
|
fieldID | The field identifier.
|
number | The number that will receive the field value.
|
ASBool PDFolderGetFieldStyle(PDFolder folder, ASAtom fieldID, ASCab styles);
folder | The folder.
|
fieldID | The field identifier.
|
styles | ASCab object that will receive the field styles
|
ASBool PDFolderGetFieldStyledText(PDFolder attachment, ASAtom fieldID, ASText text);
folder | The folder.
|
fieldID | The field identifier.
|
text | The text object that will receive the field value.
|
ASBool PDFolderGetFieldText(PDFolder folder, ASAtom fieldID, ASText text);
folder | The folder.
|
fieldID | The field identifier.
|
text | The text object that will receive the field value.
|
PDFolder PDFolderGetFirstChild(PDFolder folder);
folder | The folder.
|
ASInt32 PDFolderGetID(PDFolder folder);
folder | The folder.
|
ASBool PDFolderGetModDate(PDFolder folder, ASTimeRec *date);
folder | The folder.
|
date | A pointer to an
ASTimeRec that will be filled with the folder modification date. |
void PDFolderGetName(PDFolder folder, ASText name);
folder | The folder.
|
folderName | The name of the folder.
|
PDFolder PDFolderGetNextSibling(PDFolder folder);
folder | The folder.
|
PDFolder PDFolderGetParent(PDFolder folder);
folder | The folder object.
|
void PDFolderGetPathText(PDFolder folder, ASText path);
folder | The folder.
|
path | The folder path.
|
PDFolder is valid. ASBool PDFolderIsValid(PDFolder folder);
folder | The folder object
|
void PDFolderSetCreationDate(PDFolder folder, const ASTimeRec *date);
folder | The folder.
|
date | A pointer to an
ASTimeRec will be used to set the creation date. |
void PDFolderSetDescription(PDFolder folder, ASConstText text);
folder | The folder.
|
text | The new description for the folder.
|
void PDFolderSetDescriptionStyled(PDFolder folder, ASConstText text);
folder | The folder.
|
text | The new description for the folder in XML Text Layout Format.
|
void PDFolderSetFieldDate(PDFolder folder, ASAtom fieldID, const ASTimeRec *date);
folder | The folder.
|
fieldID | The field identifier.
|
date | The date to use as the new value for the specified field.
|
is raised if the field does not exist in the collection schema or the field type is not
D (date). |
void PDFolderSetFieldNumber(PDFolder folder, ASAtom fieldID, float number);
folder | The folder.
|
fieldID | The field identifier.
|
number | The number to use as the new value for the specified field.
|
is raised if the field does not exist in the collection schema or the field type is not
N (number). |
void PDFolderSetFieldStyle(PDFolder folder, ASAtom fieldID, ASConstCab styles);
folder | The folder.
|
fieldID | The field identifier.
|
styles | ASConstCab containing field styles for the specified field.
|
is raised if the field does not exist in the collection schema or the field type is not
S (text). |
void PDFolderSetFieldStyledText(PDFolder folder, ASAtom fieldID, ASConstText text);
folder | The folder.
|
fieldID | The field identifier.
|
text | Text Layout Format XML containing the text to use as the new value for the specified field.
|
is raised if the field does not exist in the collection schema or the field type is not
S (text). |
void PDFolderSetFieldText(PDFolder folder, ASAtom fieldID, ASConstText text);
folder | The folder.
|
fieldID | The field identifier.
|
text | The text to use as the new value for the specified field.
|
is raised if the field does not exist in the collection schema or the field type is not
S (text). |
void PDFolderSetModDate(PDFolder folder, const ASTimeRec *date);
folder | The folder.
|
date | A pointer to an
ASTimeRec that will be used to set the modification date. |
void PDFolderSetName(PDFolder folder, ASConstText folderName);
folder | The folder.
|
folderName | The name of the folder.
|
void PDFolderSetParent(PDFolder folder, PDFolder parent);
folder | The folder that will receive a new parent.
|
parent | The new parent folder.
|