Member 13877729
Попробуйте использовать это
short iRow = (short)VisRowIndices.visRowFirst;
// While there are stil rows to look at.
while (shape.get_CellsSRCExists((short)VisSectionIndices.visSectionProp, iRow, (short)VisCellIndices.visCustPropsValue, (short)0) != 0)
{
// Get the label and value of the current property.
string label = shape.get_CellsSRC(
(short)VisSectionIndices.visSectionProp,
iRow,
(short)VisCellIndices.visCustPropsLabel
).get_ResultStr(VisUnitCodes.visNoCast);
string value = shape.get_CellsSRC(
(short)VisSectionIndices.visSectionProp,
iRow,
(short)VisCellIndices.visCustPropsValue
).get_ResultStr(VisUnitCodes.visNoCast);
string strProperties = shape.Name + " - " + label + " - " + value;
Console.WriteLine(strProperties);
// Move to the next row in the properties
iRow++;
}
CHill60
Вопрос был задан и на него был дан ответ. семь много лет назад!
Простое копирование чужого кода с другого сайта без какого-либо кредита является плагиатом и не будет допущено на этом сайте.
Придерживайтесь ответов на новые вопросы, когда ОП все еще нуждается в помощи, и если вы найдете код в другом месте, который подходит, включите ссылку на оригинал