show my Shared Parameters in PropertyGrid

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi Friends
i loaded some shared parameters, these parameters are associated to category "project information". In the revit window "Project Properties" it shows my parameters and six revit parameters (Client Name, Project address, Project Issue Date, Project Name, Project Number, Project Status). i downloaded the Revit SDK, includes the example "ProjectInfo.csproj", it have a propertygrid, it show the six revit parameters "proyect Information" but no show my shared parameters which also belong to category "proyect Information". ¿how show my parameters in the PropertyGrid ?
This is the code that loads each parameter revit
/// <summary>
/// Gets or sets Project Status
/// </summary>
[Category("Other"), DisplayName("Project Status")]
public String Status
{
get
{
return m_projectInfo.Status;
}
set
{
m_projectInfo.Status = value;
}
}
When replacing the code to load my "Discipline" revit parameter is not recognized. There is some method or other way to load my parameters in the PropertyGrid