These parameters are a bit meta - they're information about the document they're a part of!
Introduction
Project Information Parameters are a special category of parameters, which are read in the UI via their own special dialog (Manage<Settings<Project Information). They are created like any other parameter, in the Project Parameters dialog, but they are assigned to the 'Project Information' category.
Typically, this is used to store information such as:
#Boilerplate Codeproject_info =FilteredElementCollector(doc).OfCategory(BuiltInCategory.OST_ProjectInformation).ToElements()#This returns a list of parameters, but it will only#ever be 1 item long, so we need to get the first element#by its index using [0]project_info = project_info[0]#Now we can access its ParameterSet, its set of parametersproject_info_parameters = project_info.ParametersOUT= project_info_parameters
In the example above, we output the Parameter objects from the Python node, however, we can just as easily iterate through each parameter, outputting its name and value.
Note: The example above will output all values as strings, regardless of their original datatype. It's possible to avoid this by querying the Parameter's StorageType property and using the appropriate conversion method for each type.