Home | History | Annotate | Download | only in Interfaces

Lines Matching full:pasteboard

193         @abstract Returns a URL from a pasteboard
194 @param pasteboard The pasteboard with a URL
195 @result A URL if the pasteboard has one. Nil if it does not.
196 @discussion This method differs than NSURL's URLFromPasteboard method in that it tries multiple pasteboard types
197 including NSURLPboardType to find a URL on the pasteboard.
198 + (NSURL *)URLFromPasteboard:(NSPasteboard *)pasteboard;
200 HRESULT URLFromPasteboard([in] IDataObject* pasteboard, [out, retval] BSTR* url);
204 @abstract Returns a URL title from a pasteboard
205 @param pasteboard The pasteboard with a URL title
206 @result A URL title if the pasteboard has one. Nil if it does not.
207 @discussion This method returns a title that refers a URL on the pasteboard. An example of this is the link label
209 + (NSString *)URLTitleFromPasteboard:(NSPasteboard *)pasteboard;
211 HRESULT URLTitleFromPasteboard([in] IDataObject* pasteboard, [out, retval] BSTR* urlTitle);
608 @abstract Returns the pasteboard types that WebView can use for the current selection
615 @abstract Writes the current selection to the pasteboard
616 @param types The types that WebView will write to the pasteboard
617 @param pasteboard The pasteboard to write to
618 - (void)writeSelectionWithPasteboardTypes:(NSArray *)types toPasteboard:(NSPasteboard *)pasteboard;
620 HRESULT writeSelectionWithPasteboardTypes([in, size_is(cTypes)] BSTR* types, [in] int cTypes, [in] IDataObject* pasteboard);
624 @abstract Returns the pasteboard types that WebView can use for an element
632 @abstract Writes an element to the pasteboard
633 @param element The element to write to the pasteboard
634 @param types The types that WebView will write to the pasteboard
635 @param pasteboard The pasteboard to write to
636 - (void)writeElement:(NSDictionary *)element withPasteboardTypes:(NSArray *)types toPasteboard:(NSPasteboard *)pasteboard;
638 HRESULT writeElement([in] IPropertyBag* elementDictionary, [in, size_is(cWithPasteboardTypes)] BSTR* withPasteboardTypes, [in] int cWithPasteboardTypes, [in] IDataObject* pasteboard);