No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
Newer Version Available
Blob Class
Contains methods for the Blob primitive data type.
Namespace
Usage
For more information on Blobs, see Primitive Data Types.
Blob Methods
The following are methods for Blob.
size()
Returns the number of characters in the Blob.
Signature
public Integer size()
Return Value
Type: Integer
Example
1String myString = 'StringToBlob';
2Blob myBlob = Blob.valueof(myString);
3Integer size = myBlob.size();