GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / AllowCopy Property
In This Topic
    AllowCopy Property (GoView)
    In This Topic
    Gets or sets whether the user can copy objects in this view.
    Syntax
    [Category("Behavior")]
    [DefaultValue(true)]
    [Description("Whether the user can copy selected objects.")]
    public bool AllowCopy {get; set;}
    Remarks
    A false value prevents the user from copying objects in this view by the normal mechanisms. Even when this property value is true, some objects might not be copyable by the user because the document or the object disallows it. Your code can always copy objects programmatically by calling GoDocument.CopyFromCollection.
    See Also