Search found 2 matches
- 03 Mar 2010, 14:32
- Forum: CAD .NET
- Topic: Get item text of property grid
- Replies: 3
- Views: 16789
Get item text of property grid
Hi,
I am geting property grid object values from code
foreach(PropertyDescriptor pd in pdc)
{
object objVal = pd.GetValue(propGrid.SelectedObject);
}
Now I want to get text part also.
Thanks & Regards
Sovan Bera
I am geting property grid object values from code
foreach(PropertyDescriptor pd in pdc)
{
object objVal = pd.GetValue(propGrid.SelectedObject);
}
Now I want to get text part also.
Thanks & Regards
Sovan Bera
- 23 Feb 2010, 12:22
- Forum: CAD .NET
- Topic: Get drawing object details in CADImport.Net
- Replies: 1
- Views: 9998
Get drawing object details in CADImport.Net
Hi, Requirement: 1) Draw AutoCAD file(.dwg) in webpage(ASP.Net) 2) Get properties(height,width) of all objects in diagram Explanation: I have download CDIImport.dll and usinf help reference draw the diagram(.dwg) in asp.net webpage. Now I want to get objects like polyline, polygon with there height,...