Removes the first occurrence of a specific object from the PdfGridColumnCollection.

Namespace: Spire.Pdf.Grid
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public bool Remove(
	PdfGridColumn item
)
Public Function Remove ( 
	item As PdfGridColumn
) As Boolean
public:
bool Remove(
	PdfGridColumn^ item
)
member Remove : 
        item : PdfGridColumn -> bool 

Parameters

item
PdfGridColumn
The object to remove from the PdfGridColumnCollection.

Return Value

Boolean
true if item is successfully removed; otherwise, false

See Also