18 lines
438 B
Python
18 lines
438 B
Python
from ViewProviderDocumentObject import ViewProviderDocumentObject
|
|
from typing import Any, Final
|
|
|
|
|
|
class ViewProviderLink(ViewProviderDocumentObject):
|
|
"""
|
|
This is the ViewProviderLink class
|
|
|
|
Author: Zheng, Lei (realthunder.dev@gmail.com)
|
|
Licence: LGPL
|
|
"""
|
|
|
|
DraggingPlacement: Any = ...
|
|
"""Get/set dragger placement during dragging"""
|
|
|
|
LinkView: Final[Any] = ...
|
|
"""Get the associated LinkView object"""
|