Bentley Communities
Site
Search
User
Site
Search
User
Welcome
Products
Support
About
More
Cancel
Browse By Tags
All tags
DgnLink
C++
connect
Delete
DgnFileLink
DgnLinkTree
DgnURLLink
drop
example
Handler
hyperlink
KEY-IN
remove
TextBlock
TextField
TextTable
TextTableCell
[CONNECT Update 16 C++] TextTable Internal Structure: Cell Text
Jon Summers
If I analyse a TextTable programmatically I can see rows, columns and cells. The TextTableCell class hosts whatever text a user provides and provides method GetTextBlock() . Suppose I want to add a DgnLink to a cell in a TextTable . DgnLinks are attached…
over 1 year ago
MicroStation Programming
MicroStation Programming Forum
Example DgnLink Project
Jon Summers
I've written an example C++ app that performs CRUD operations on DgnLinks . The example includes source code.
http://www.la-solutions.co.uk/content/CONNECT/MicroStationAPI/MicroStationAPI-DgnLink.htm
View
Hide
over 1 year ago
MicroStation Programming
MicroStation Programming Blog
[CONNECT Update 16.2 C++] Problem creating DgnLink for a URL
Jon Summers
Following the examples posted on this Forum, I am experimenting with the DgnLink C++ API. I can successfully create a File DgnLink and a Folder DgnLink . For example, this is working code (error-catching omitted) … template<> bool CreateDgnLink<DgnFolderLinkP…
Answered
over 1 year ago
MicroStation Programming
MicroStation Programming Forum
[CONNECT Update 16 C++] Delete DgnLink
Jon Summers
Thanks to a tip from Yongan.Fu we know how to add (attach) a DgnLink to an element... DgnLinkTreeSpecPtr spec = DgnLinkManager::CreateTreeSpec(eh); const bool CreateIfUnavailable {true}; DgnLinkTreePtr linkTree = DgnLinkManager::ReadLinkTree(*spec…
Answered
over 1 year ago
MicroStation Programming
MicroStation Programming Forum
[CONNECT Update 16 C++] DgnLink Handlers
Jon Summers
The MicroStationAPI documentation is silent on the process used to create a DgnLink . Example ..\SDK\examples\Miscellaneous\validateSheetLinks shows how to read DgnLInks , but not how to create, edit or delete one. I suspect that the answer lies in…
Answered
over 1 year ago
MicroStation Programming
MicroStation Programming Forum
[CONNECT Update 16 C++] DgnLink types
Jon Summers
Here's the DgnLink class hierarchy found in the MicroStationAPI help doc... When one uses the Add Link tool in MicroStation, three choices are offered... URL and From File are covered by the types listed above ( DgnURLLink and DgnFileLink ). But…
Answered
over 1 year ago
MicroStation Programming
MicroStation Programming Forum