6

I'm using IRelationshipClass.DestinationClass to get an IObjectClass. From here, I want to be able to get the table name, but can only access the AliasName.

Any ideas?


The IObjectClass can be cast to a IDataset, which has the Name property, which is not the same as AliasName. I should say thanks to Kirk, as it was some code he posted elsewhere that pointed me in the right direction.

For reference,

((IDataset)relClass.DestinationClass).Name
PolyGeo
  • 65,136
  • 29
  • 109
  • 338
BlinkyBill
  • 1,163
  • 1
  • 9
  • 19

1 Answers1

9

You should be able to cast it to IDataset, which has a Name property.

Kirk Kuykendall
  • 25,787
  • 8
  • 65
  • 153