ARCed.UI.DockPanel.DockDragHandler.DockIndicator.ShouldPaneDiamondVisible C# (CSharp) Метод

ShouldPaneDiamondVisible() приватный Метод

private ShouldPaneDiamondVisible ( ) : bool
Результат bool
                private bool ShouldPaneDiamondVisible()
                {
                    if (this.DockPane == null)
                        return false;

                    if (!this.DockPanel.AllowEndUserNestedDocking)
                        return false;

                    return this.DragHandler.DragSource.CanDockTo(this.DockPane);
                }