Smartsheet.Api.Internal.SheetResourcesImpl.SheetResourcesImpl C# (CSharp) Method

SheetResourcesImpl() public method

Constructor. Exceptions: - IllegalArgumentException : if any argument is null
public SheetResourcesImpl ( SmartsheetImpl smartsheet ) : System
smartsheet SmartsheetImpl the Smartsheet
return System
        public SheetResourcesImpl(SmartsheetImpl smartsheet)
            : base(smartsheet)
        {
            this.shares = new ShareResourcesImpl(smartsheet, "sheets");
            this.rows = new SheetRowResourcesImpl(smartsheet);
            this.columns = new SheetColumnResourcesImpl(smartsheet);
            this.attachments = new SheetAttachmentResourcesImpl(smartsheet);
            this.discussions = new SheetDiscussionResourcesImpl(smartsheet);
            this.comments = new SheetCommentResourcesImpl(smartsheet);
            this.updateRequests = new SheetUpdateRequestResourcesImpl(smartsheet);
        }